Click here to Skip to main content
15,913,130 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Winforms MonthCalendar next/previous button Pin
Dave Kreskowiak25-Mar-05 1:39
mveDave Kreskowiak25-Mar-05 1:39 
GeneralRemote registry edit in code Pin
Talespinner24-Mar-05 6:39
Talespinner24-Mar-05 6:39 
GeneralRe: Remote registry edit in code Pin
H@is@here24-Mar-05 11:47
H@is@here24-Mar-05 11:47 
GeneralRe: Remote registry edit in code Pin
Dave Kreskowiak24-Mar-05 14:34
mveDave Kreskowiak24-Mar-05 14:34 
GeneralRe: Remote registry edit in code Pin
Dave Kreskowiak24-Mar-05 14:33
mveDave Kreskowiak24-Mar-05 14:33 
GeneralRe: Remote registry edit in code Pin
Anonymous24-Mar-05 14:40
Anonymous24-Mar-05 14:40 
Questionhow to bind data in combobox from datatable Pin
sumit2124-Mar-05 6:04
sumit2124-Mar-05 6:04 
AnswerRe: how to bind data in combobox from datatable Pin
Dave Kreskowiak24-Mar-05 6:10
mveDave Kreskowiak24-Mar-05 6:10 
There's a ValueMember (what is the value or ID of the object selected), and a DisplayMember (what is actually shown in the combobox:
ComboBox1.ValueMember = DataSet11.Tables("Table1").Columns(1)
ComboBox1.DisplayMember = DataSet11.Tables("Table1").Columns(2)

Also, you told the combobox what the valuemember was, but no what the display member was supposed to be, so of course, the combobox came up blank. On top of that, you called .ToString() on a Column object. This will return the name of the column, not the data in that column.


RageInTheMachine9532
"...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome

QuestionCenter image in picture box? Pin
leezardd24-Mar-05 4:23
leezardd24-Mar-05 4:23 
AnswerRe: Center image in picture box? Pin
H@is@here24-Mar-05 11:57
H@is@here24-Mar-05 11:57 
GeneralRe: Center image in picture box? Pin
leezardd29-Mar-05 4:48
leezardd29-Mar-05 4:48 
GeneralSetup and deployment Project Pin
Purple Monk24-Mar-05 3:36
Purple Monk24-Mar-05 3:36 
GeneralRe: Setup and deployment Project Pin
rwestgraham24-Mar-05 17:09
rwestgraham24-Mar-05 17:09 
Generalcombobox in datagrid vb.net Pin
vsing24-Mar-05 0:24
vsing24-Mar-05 0:24 
GeneralRe: combobox in datagrid vb.net Pin
j45mw26-Mar-05 6:54
j45mw26-Mar-05 6:54 
GeneralUsing VB to search data in Access database Pin
Anonymous23-Mar-05 23:16
Anonymous23-Mar-05 23:16 
GeneralRe: Using VB to search data in Access database Pin
magnifique24-Mar-05 0:28
magnifique24-Mar-05 0:28 
GeneralRe: Using VB to search data in Access database Pin
magnifique24-Mar-05 0:35
magnifique24-Mar-05 0:35 
Generaluse the scrollbar with the datagrid and the checkboxlist...please help... Pin
besah23-Mar-05 20:47
besah23-Mar-05 20:47 
Generalproblem with CurrencyManager Pin
Anonymous23-Mar-05 18:10
Anonymous23-Mar-05 18:10 
GeneralCOM object Memory Access Pin
JimWills23-Mar-05 16:31
JimWills23-Mar-05 16:31 
GeneralFolder Creation Pin
Winston98223-Mar-05 13:26
Winston98223-Mar-05 13:26 
GeneralRe: Folder Creation Pin
Christian Graus23-Mar-05 15:21
protectorChristian Graus23-Mar-05 15:21 
GeneralRe: Folder Creation Pin
H@is@here24-Mar-05 12:49
H@is@here24-Mar-05 12:49 
GeneralRe: Folder Creation Pin
Christian Graus24-Mar-05 15:53
protectorChristian Graus24-Mar-05 15:53 

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.