Click here to Skip to main content
15,915,795 members
Home / Discussions / Visual Basic
   

Visual Basic

 
Questioninserting values in bounded combobox Pin
Ajeet mittal19-May-07 21:47
Ajeet mittal19-May-07 21:47 
AnswerRe: inserting values in bounded combobox Pin
Dave Kreskowiak20-May-07 4:12
mveDave Kreskowiak20-May-07 4:12 
QuestionOutlook Express Automation Pin
isidor719-May-07 8:17
isidor719-May-07 8:17 
AnswerRe: Outlook Express Automation Pin
Dave Kreskowiak20-May-07 4:10
mveDave Kreskowiak20-May-07 4:10 
AnswerRe: Outlook Express Automation Pin
Sonia Gupta20-May-07 18:52
Sonia Gupta20-May-07 18:52 
QuestionProblem with AxMozillaBrowser !!!!!!! Pin
softwarejaeger19-May-07 6:04
softwarejaeger19-May-07 6:04 
AnswerRe: Problem with AxMozillaBrowser !!!!!!! Pin
MatrixCoder19-May-07 12:31
MatrixCoder19-May-07 12:31 
AnswerRe: Problem with AxMozillaBrowser !!!!!!! Pin
Dave Kreskowiak19-May-07 18:09
mveDave Kreskowiak19-May-07 18:09 
GeneralRe: Problem with AxMozillaBrowser !!!!!!! Pin
softwarejaeger19-May-07 23:12
softwarejaeger19-May-07 23:12 
QuestionCOM+ Pin
sunder vel19-May-07 5:59
sunder vel19-May-07 5:59 
AnswerRe: COM+ Pin
Dave Kreskowiak20-May-07 4:51
mveDave Kreskowiak20-May-07 4:51 
QuestionVB.net Email Client Pin
al96819-May-07 4:22
al96819-May-07 4:22 
AnswerRe: VB.net Email Client Pin
MatrixCoder19-May-07 15:10
MatrixCoder19-May-07 15:10 
QuestionDifference between Debug and Release Folder Pin
Rupesh Kumar Swami19-May-07 4:02
Rupesh Kumar Swami19-May-07 4:02 
QuestionRe: Difference between Debug and Release Folder Pin
CPallini19-May-07 10:12
mveCPallini19-May-07 10:12 
AnswerRe: Difference between Debug and Release Folder Pin
Joseph Guadagno19-May-07 10:49
Joseph Guadagno19-May-07 10:49 
QuestionProblem in Bounded Combobox In vb.net Pin
Ajeet mittal19-May-07 1:35
Ajeet mittal19-May-07 1:35 
AnswerRe: Problem in Bounded Combobox In vb.net Pin
Rupesh Kumar Swami19-May-07 1:51
Rupesh Kumar Swami19-May-07 1:51 
AnswerRe: Problem in Bounded Combobox In vb.net Pin
mr_lasseter19-May-07 5:26
mr_lasseter19-May-07 5:26 
It's because the selected item is of type DataRow and when you assign it to the label1.Text the ToString method is called on the DataRow, which returns System.DataRow.

If you want to display the selected value in the label try:
label1.Text = combobox1.SelectedValue.ToString.

Mike Lasseter

AnswerRe: Problem in Bounded Combobox In vb.net Pin
Dave Kreskowiak20-May-07 4:03
mveDave Kreskowiak20-May-07 4:03 
QuestionReplacing, removing lines. Pin
NANCO19-May-07 1:10
NANCO19-May-07 1:10 
AnswerRe: Replacing, removing lines. Pin
kubben19-May-07 2:39
kubben19-May-07 2:39 
Generalit doesn't work! Pin
NANCO19-May-07 3:28
NANCO19-May-07 3:28 
AnswerRe: Replacing, removing lines. Pin
Guffa19-May-07 3:48
Guffa19-May-07 3:48 
GeneralStill isn't working. Pin
NANCO19-May-07 4:35
NANCO19-May-07 4:35 

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.