Hi John, When I want to get the selected row of a data grid, I use the currency manager class like this: ' Retrieve the currency manager managing the datagrid...
Something happened that I am not aware of and all of a sudden, the dropdown list that you get while coding, is not coming up. When I type "Me." it is supposed...
I'm using a data view to sort my data. One of the things I need to do is add new people to the database. I have my data bound to various combo boxes and text...
It might have been disabled Go to Tools--> options --> Editor and select the "Auto list members" check box. With Regards Karthick V The basic rule of human...
Hi, I have big problem that can't be resolved by me until this moment. Would you please do help me? Okay, to the point... I created a form. On that form I...
Can anyone tell me how to enable Just In Time debugging for my VB application? The Help entrance is very vague and hard to understand (especially if you're...
I'm not using "auto number" or identity fields. There are times when I will need to access the database from off line on a laptop. I plan to write the code...
I am really very much confused that I should start learning Visual Basic.Net or not, because I heard that this language is not good for networking because of...
I have added some fields to my database and need my dataset to include those - so far I've had no luck on figuring out how to "refresh" the dataset so that it...
You need to update the SQL statement to include the new fields. ... __________________________________ Do you Yahoo!? Yahoo! Mail - 50x more storage than other...
Have you tried putting the code that fills the datagrid into it's own sub and then recalling the sub after the new entry is made into the database? ... ...
I know some of you are losing patience with me. For that I apologize. I'm losing patience with VB.NET. Everything is twice or three times as difficult to do...
If you are using a Dataset to fill your datagrid you need to clear the dataset and then refill the dataset. I would make a sub that does this so you can just...
I have not moved to .Net as of yet but in my book it says you should look for the "valuemember", it says it is similar to the "Itemdata" in VB Dim strCat As...
Hello John, Try this: Dim strCat as String strCat = ctype(Me.lbAwardsCategory.SelectedItem, String) or strCat = Me.lbAwardsCategory.SelectedItem.ToString() Use...
John
sam8812_n6@...
Jul 3, 2004 2:19 pm
5952
Change your selectedvalue to selecteditem and you should have it. Charles rader (kc5dgc) aas computer technology network administrator shca ... From: John...
What you actually want to use is the .SelectedItem property. SelectedValue returns the value of the selected item as specified in the ValueMember property. ...
Question for the group... Currently I am using a thrid party software that queries delayed/real time stock quotes from the yahoo website. The program is in...
hello all, I'm getting a real strange problem in VB.NET. I'm trying to pass an array in a function. This don't give any errors for running but when I look at...
I guess I owe this group an apology. I was certain I had already tested using the .SelectedItem property. What I generally do when I have a question is to...
I've never heard that before. I'm not 100% sure but I guess this isn't true. I'm working still 2 years with VB.NET (and it's great, or better: .NET is great). ...
Hi All, I'm, developing a VB.NET application. I am using listview to load the details from the database.When i click the any row in the listview, the details...
Aap, Are you asking whether you should learn vb.net or C# or C++? If that is the question, then my advice is based on your past history. Coming from a C...
For interested people, i didn't succeed in handeling this problem with arrays ! very strange problem of VB.NET... I've worked with an arraylist of arraylist......
This is an example I used in asp.Net with vb.net, it has to be something in the same way. Look for editItemtemplates etc... Hope this could help, Feel free to...
I've been researching an issue i'm having with sstab controls and can't find this problem mentioned. when i change tabs in the program on a windows 2000...
Hello, To fix this, you need to select the tab 'control' before you draw or paste the controls, otherwise, the form itself is selected by default, and the...