vote up 0 vote down star

In a VB.Net application, how can I either:

Find the dropDownList selectedIndex position of something just added to a database.

Have a form restart with the most recently-added entry showing in the DropDownList, by way of modifying the inline SQL query to display by date/time added.

flag
I don't understand your question at all – d03boy Sep 9 at 23:32
I have a form where I add an entry. Then upon saving, I want to go back to the main form, which loads a DropDown List. I want it to load the dropDown List with the most current entry I made. I want to do this so I can go straight to adding info for the selected entry/person which is not handled on the Add form. – JasonK Sep 9 at 23:43

3 Answers

vote up 0 vote down

i think this is more of an sql question than vb.net. All you need to do on the vb end is to use datasource and databind on the dataset return from your sql query to your dropdownlist. And on SQL you just need to ORDER BY the datetime column.

link|flag
Thanks, that definitely sounds like the direction I need to go in. I'll try it tonight and let you know if I was able to figure it out. – JasonK Sep 9 at 23:40
vote up 0 vote down

If VB.Net has a DetailsView I would use that. I know ASP.Net has one.

link|flag
vote up 0 vote down

I assume you're talking about a ComboBox with it's style property set to DropDownList?

Two ways you can do this:

1) Order your SQL results with the newest item first, as suggested above.

2) Get the ID of the last item (select top 1 id order by id desc) and set the ComboBox.SelectedValue to this ID, after you have bound the data source.

The second method is better if you prefer to have your list sorted alphabetically. I assume your CombBox.ValueMember is set the the same ID field on binding.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.