Seem to have solved this to.
objDR.GetInt32(0) is the solution.
I kept on receiving an error due to not reading the column properly from the dataReader.
Main Topics
Browse All TopicsHi Folks,
In my app I display in a ComboBox data from a DB table which includes 2 columns (ID, VAL).
In the ComboBox I display the VAL, but once it's selected I would like the ID (to use in a query) instead of the actual selected VAL.
How do I retrieve the ID, hopefully without another query?
Do I need to populate the ComboBox differently?
Currently I populate the ComboBox like this:
while (objDR.Read())
form2.cbCatagory.Items.Add
Thanks in advance.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
the advantage with this is that u dont have to loop through the reader to add alla the values
u could fill a data table with a sqlconnection and sqladapterr as shown below
System.Data.SqlClient.SqlD
= new System.Data.SqlClient.SqlD
Aadpter.SelectCommand
= new System.Data.SqlClient.SqlC
(YourQuery,YourConnection)
Aadpter.Fill(ADataTable);
Business Accounts
Answer for Membership
by: chayahd99Posted on 2006-08-22 at 01:38:07ID: 17361900
I just found most of the solution at: http://www.dotnet247.com/2 47referenc e/msgs/18/ 92329.aspx
My only problem is that I can't seem to retrieve the ID from the dataReader (objDR).
objDR.GetString(1) returns VAL. How do I get the ID?
Thanks.