Software Development Network Logo
  • Audio and Video
  • Visual C#
  • Visual Basic
  • Windows Vista
  • SharePoint Products
  • Visual Studio
  • Visual FoxPro
  • Windows Forms
  • VS Team System
  • IE Development
  • Smart Devicet
  • Visual C++
  • Microsoft ISV
  • SQL Server
  • .NET Development

Software Development Network >> johnvms's Q&A profile

johnvms

Member List

mtm81
wjousts
BobInVermont
Vb_2007
AlexBB
stenis
Irishman
THURST80
moniker
Duane Douglas
sofakng
Forscius
Michael Wittenburg
Perley
maqk
Ed Allison
Dave_is100
Scott Simms
mido19
P.Chonnathan
Only Title

johnvms's Q&A profile

  • .NET Development wsdl.exe in visual studio

    Hi. I need to use the "add webreference" to make stubs for a webservice. But that function doesnt allow for the "/order" switch to be used. Are there any workarounds to accomplish this ok, I've managed to get wsdl.exe working and tried every parameter it has in different combinations to produce anything remotely similar to what you get when using "add webrefence" in visual studio, without any luck at all. Is there any way to tweak visual studio into including order when generating the stubs Thats all I need.. ...Show All

  • Visual C# For Loop

    In the following snippet, I got nothing in "path": for ( int j=arrcolid.Count-1;j==0;j-- )    {     path += arrcolid[j];    }   But in the following snippet, path is "DogCatFox", Why for ( int j=0;j<arrcolid.Count;j++ )   {       path+=arrcolid[j];   } gkantsidis , thks a lot! ...Show All

  • Visual Basic How to load one form above another while displaying

    I'm calling 2 forms at the same time and when it is displayed both are displayed over the center of the screen, so I don't have control of one form or the other. Can anybody please suggest me how to place one form over other so that I cud get control to enter data in both forms. placed above and below respectively. Sorry, are you trying to show both forms but have 1 form available for user input only, until this form is closed Or, most likely this: are you wanting to display both forms, on on top of the other (vertically) If this is the case then you can position the other form by setting the location to be of the first form's location + about 20 pixels so something like maybe:   Dim myNewForm as New SomeForm() ...Show All

  • Windows Forms [SOLVED] ListBox how to question

    Hi all, [C#] I have a method which adds files into a ListBox as follows: foreach ( String file in Directory .GetFiles( @"C:\Files" ))     {         listBox1.Items.Add( new FileInfo (file).Name);     } This statment is run shortly after InitializeComponent(); then I have an event handle the change: private void listBox1_SelectedIndexChanged( object sender, EventArgs e)     {         : // not sure what needs to be done here         myTxtFile.Text = listBox1.SelectedIndex.FileName; // cannot resolve FileName!!!         this.CallsMyMethod(); // no p ...Show All

  • SQL Server Reporting Service vs UDM

    I am new to both technologies and would has been reading UDM on how to create a cube. My orginal intention is to create cubes for efficient retrieval of data which ends up in reports managment in an application. Can anyone elaborates on how the reporting service differs from UDM ( or what reporting services are )I thought they are mutually exclusive Thanks. Regards Alu Yes. Thats my opinion. Most customers like both types of reports, leaf level and top level. Regards Thomas Ivarsson ...Show All

  • Microsoft ISV Community Center Forums Take out the ability to input values on combo box?

    How do I take out the ability to input values on a combo box For instaance, if I want the user to select the month ...Show All

  • SQL Server Problems with neural net viewer, lift chart and predictions still ocurring in SP2

    Greetings, I have a mining structure that I am using to perform a text-mining classification task. The mining structure contains three models: a decision tree, a naive bayes and a neural network. Both the decision tree and the naive bayes models process without any problems, but I am having significant difficulties with the neural network model. Initially when I processed the model, processing would fail altogether with the following error message: "Memory error: Allocation failure : Not enough storage is available to process this command" This was remedied by taking the steps prescribed in http://support.microsoft.com/kb/917885 (I upgraded to SQL 2005 SP1 and applied all available hotfixes listed in http://s ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Custom Model Class and Content Pipeline

    Today I started an experiment aimed at creating my own model classes. My eventual goal is to store mesh data that doesn't fit nicely into the standard Model class. Although my goal isn't to recreate the Model class (rather, its to create a different kind of model), for the first stage in my experiment that's sort of what I did. In any case, there's been enough questions about the ContentPipeline that I thought I'd make it available to the community. The code that I wrote for it can be considered public domain (I'm not attached to it), but the content files are from the SpaceWar app, so you'll have to consult XNA's documentation for the rights to those files (hopefully, MS won't mind me posting them as part of this example =p). The follo ...Show All

  • Windows Live Developer Forums Is Virtual Earth Free?

    I Would like to use Virtual Earth in my real estate portal. Is it free or I have po pay Virtual Earth Is Free. BTW, what is the URL of your real estate portal I would like to see it :D. ...Show All

  • Windows Forms Both DataSource and DataSourceID are defined in Gridview1

    By the way you guys in this C Forum ROCK. Other forums may take weeks or months before you get an answer. I have a problem using C# on a ASp.NET site. I have a Table Adapter with two queries. 1 to return all projects and the other to return projects on ProjectID parameter. I use GridViewProject bound to ObjectDataSource1 to return al projects, but have a search textBox with a button on the same page. I have included in my page_load event some code to do as follows: if (textBox == "") // I have used == null to no avail as well. GridViewProject.DataSource = myAdapter.GetProjectData(); else GridViewProject.DataSource = myAdapter.GetProjectDataByProjectID(textBox); //textBox = TextBox1.Text I have alre ...Show All

  • Visual Studio Express Editions Catastrophic failure (Exception from HRESULT: 0x8000FFFF (E_UNEXPECTED))

    I've looked at the forum threads where the above error message is being reported, but they are much more complicated than when I get it... A simple VB 2005 Express project - Rename the form, rename the 'Assembly name', rename the 'Root namespace'... Bang! Even as I'm typing this there are more errors being flagged - I'm not doing anything! Double click the form... there it is again. Try to load the code for the form (I've not added anything yet)... there it is again. I've uninstalled VB 2005 express and reinstalled it. Anyone got any idea what's happening I now have 3 tabs - frmMain.vb, frmMain.vb [Design] and the solution properties. Whenever I select a different tab I get the same error... (I'm typing this and another one has ...Show All

  • Windows Forms Faster loading of assemblies

    Hi all, I'm currently developing a MDI-application which loads the dll assembly of the MDI-child by using the Assembly.LoadFrom() method. When having a couple (3 or 4) databounded comboboxes (or even 1 datagrid) on a MDI-Child, loading this MDI-child for the first time gives me a poor performance when loading the MDI-child form. When closing this MDI-child form and reopen it, it substantially loads faster, this loads faster, because the dll is already known and loaded by the application. I am curious what causes the delay when loading a MDI-child form. It is actually pretty annoying when a user have to wait for everytime a MDI-child form loads... Does anyone have suggestions / solutions on how to improve the performance Maybe ...Show All

  • Windows Forms Giving Focus to the Tab Control

    Hello,    I have a tab control with 2 tabPages in it for data entry. The second tabPage is information that the user does NOT have to fill out - so I give them the option. But if they do want to fill it out, I have a button at the end of tabPage 1 for them to proceed to that 2nd tabPage. What code do I need to add in this button_click event that will automatically give focus to that 2nd tabPage so that the user doesn't have to click on the tab PS I tried this - but it didn't work... Private void button3_Click( object sender, EventArgs e) {      if (tabPage2.Focus() != true )      tabPage2.Select(); } Thanks! Any help would be great! pps I just n ...Show All

  • Visual Studio 2008 (Pre-release) Window versus Page

    if i set my main .XAML class with a root element of <Page> rather than <Window>, I can then get a hyperlink to work in a child frame, whereas it wouldn't before. the only visible difference i can make out is that I get a toolbar at the top with a BACK/FORWARD button. i am uncertain as to the real difference between having a WINDOW or a PAGE as a root element for my application. can anybody please enlighten me as to the differences, also as to why my hyperlink only works on a child frame if the parent has a root of PAGE and not WINDOW thanks. hello rob. many thanks for your patience. first of all let me state that I am a relative beginner to WinFX programming, so if my question here is ...Show All

  • Visual Studio 2008 (Pre-release) Why can I not obfuscate a WPF app

    For some reason I cannot run any WPF app once it's been obfuscated (I'm using the latest version of Dotfuscator Pro). It can be run if renaming is disabled in Dotfuscator. Does anyone know of a list of items to exclude from renaming (rather than disabling it completely) in order to use obfuscation on WPF applications Thanks for any ideas. Just tested the Postbuild 'link into one assembly' feature and that fails also. I know that someone could disassemble back to 'source' code. Can anyone get back to the original XAML. I suspect not but don't know. John ...Show All

©2008 Software Development Network