Click here to Skip to main content
15,796,507 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: VB.net Email Client Pin
MatrixCoder19-May-07 16:10
MatrixCoder19-May-07 16:10 
QuestionDifference between Debug and Release Folder Pin
Rupesh Kumar Swami19-May-07 5:02
Rupesh Kumar Swami19-May-07 5:02 
QuestionRe: Difference between Debug and Release Folder Pin
CPallini19-May-07 11:12
mveCPallini19-May-07 11:12 
AnswerRe: Difference between Debug and Release Folder Pin
Joseph Guadagno19-May-07 11:49
Joseph Guadagno19-May-07 11:49 
QuestionProblem in Bounded Combobox In vb.net Pin
Ajeet mittal19-May-07 2:35
Ajeet mittal19-May-07 2:35 
AnswerRe: Problem in Bounded Combobox In vb.net Pin
Rupesh Kumar Swami19-May-07 2:51
Rupesh Kumar Swami19-May-07 2:51 
AnswerRe: Problem in Bounded Combobox In vb.net Pin
mr_lasseter19-May-07 6:26
mr_lasseter19-May-07 6:26 
AnswerRe: Problem in Bounded Combobox In vb.net Pin
Dave Kreskowiak20-May-07 5:03
mveDave Kreskowiak20-May-07 5:03 
The SelectedItem will return the DataRow object in the datasource that your box is bound to. Cast SelectedItem to a DataRow object, then you can use the DataRow's properties and methods to get the data you want out of that row.
Dim dr As DataRow = DirectCast(ComboBox1.SelectedItem, DataRow)
Dim id As Integer = dr("SomeIdColumnName")



A guide to posting questions on CodeProject[^]

Dave Kreskowiak
Microsoft MVP
Visual Developer - Visual Basic
     2006, 2007


QuestionReplacing, removing lines. Pin
NANCO19-May-07 2:10
NANCO19-May-07 2:10 
AnswerRe: Replacing, removing lines. Pin
kubben19-May-07 3:39
kubben19-May-07 3:39 
Generalit doesn't work! Pin
NANCO19-May-07 4:28
NANCO19-May-07 4:28 
AnswerRe: Replacing, removing lines. Pin
Guffa19-May-07 4:48
Guffa19-May-07 4:48 
GeneralStill isn't working. Pin
NANCO19-May-07 5:35
NANCO19-May-07 5:35 
GeneralRe: Still isn't working. Pin
CPallini19-May-07 11:14
mveCPallini19-May-07 11:14 
AnswerRe: Still isn't working. Pin
Guffa19-May-07 13:06
Guffa19-May-07 13:06 
GeneralRe: Still isn't working. Pin
NANCO20-May-07 4:48
NANCO20-May-07 4:48 
AnswerRe: Still isn't working. Pin
Guffa20-May-07 10:23
Guffa20-May-07 10:23 
QuestionHow can a get the content of word file page by page Pin
koolprasad200319-May-07 1:43
professionalkoolprasad200319-May-07 1:43 
AnswerRe: How can a get the content of word file page by page Pin
isidor719-May-07 9:31
isidor719-May-07 9:31 
GeneralRe: How can a get the content of word file page by page Pin
koolprasad200320-May-07 21:02
professionalkoolprasad200320-May-07 21:02 
QuestionThreading Pin
Amir Emamjomeh19-May-07 0:51
Amir Emamjomeh19-May-07 0:51 
QuestionRe: Threading Pin
Sonia Gupta19-May-07 0:56
Sonia Gupta19-May-07 0:56 
AnswerRe: Threading Pin
isidor719-May-07 9:42
isidor719-May-07 9:42 
AnswerRe: Threading Pin
Dave Kreskowiak20-May-07 4:59
mveDave Kreskowiak20-May-07 4:59 
GeneralRe: Threading Pin
Amir Emamjomeh22-May-07 9:33
Amir Emamjomeh22-May-07 9:33 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.