Click here to Skip to main content
15,903,385 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Question about DataGridView and a text file Pin
Psycho-*Coder*-Extreme29-Jun-07 2:06
Psycho-*Coder*-Extreme29-Jun-07 2:06 
QuestionSaving changes made to a datagridview Pin
steve_rm28-Jun-07 12:53
steve_rm28-Jun-07 12:53 
AnswerRe: Saving changes made to a datagridview Pin
Dave Kreskowiak29-Jun-07 3:27
mveDave Kreskowiak29-Jun-07 3:27 
Questioncommunicating via RF Pin
Cory Kimble28-Jun-07 11:21
Cory Kimble28-Jun-07 11:21 
AnswerRe: communicating via RF Pin
Psycho-*Coder*-Extreme28-Jun-07 19:37
Psycho-*Coder*-Extreme28-Jun-07 19:37 
QuestionPopulating ComboBox Pin
HurricaneDan28-Jun-07 9:54
HurricaneDan28-Jun-07 9:54 
AnswerRe: Populating ComboBox Pin
Christian Graus28-Jun-07 13:20
protectorChristian Graus28-Jun-07 13:20 
GeneralRe: Populating ComboBox Pin
Psycho-*Coder*-Extreme28-Jun-07 14:48
Psycho-*Coder*-Extreme28-Jun-07 14:48 
This is how you can do it:
'Populate ComboBox.
ComboBox1.DataSource = myDS.Tables(0)
ComboBox1.ValueMember = "ColumnName"
ComboBox1.DisplayMember = "ColumnName"

'Add a blank row.
DR = myDS.Tables(0).NewRow
DR(1) = ""
myDS.Tables(0).Rows.Add(DR)

'Initially show blank row in ComboBox.
ComboBox1.SelectedIndex = ComboBox1.FindStringExact("")


"Okay, I give up: which is NOT a real programming language????"
Michael Bergman


GeneralRe: Populating ComboBox Pin
HurricaneDan29-Jun-07 3:09
HurricaneDan29-Jun-07 3:09 
QuestionConvert inches to feet/inches in VB's Crystal..... Pin
CCG328-Jun-07 8:51
CCG328-Jun-07 8:51 
AnswerRe: Convert inches to feet/inches in VB's Crystal..... Pin
Dave Kreskowiak28-Jun-07 9:23
mveDave Kreskowiak28-Jun-07 9:23 
GeneralRe: Convert inches to feet/inches in VB's Crystal..... Pin
CCG328-Jun-07 9:47
CCG328-Jun-07 9:47 
AnswerRe: Convert inches to feet/inches in VB's Crystal..... Pin
Dave Sexton28-Jun-07 11:22
Dave Sexton28-Jun-07 11:22 
GeneralRe: Convert inches to feet/inches in VB's Crystal..... Pin
Dave Sexton28-Jun-07 11:25
Dave Sexton28-Jun-07 11:25 
GeneralRe: Convert inches to feet/inches in VB's Crystal..... Pin
Dave Kreskowiak28-Jun-07 13:39
mveDave Kreskowiak28-Jun-07 13:39 
GeneralRe: Convert inches to feet/inches in VB's Crystal..... Pin
CCG329-Jun-07 2:06
CCG329-Jun-07 2:06 
GeneralRe: Convert inches to feet/inches in VB's Crystal..... Pin
Dave Kreskowiak29-Jun-07 3:25
mveDave Kreskowiak29-Jun-07 3:25 
GeneralRe: Convert inches to feet/inches in VB's Crystal..... [modified] Pin
CCG329-Jun-07 3:36
CCG329-Jun-07 3:36 
GeneralRe: Convert inches to feet/inches in VB's Crystal..... Pin
Dave Kreskowiak29-Jun-07 12:52
mveDave Kreskowiak29-Jun-07 12:52 
QuestionCustomize Text Box Pin
ad17y028-Jun-07 7:47
ad17y028-Jun-07 7:47 
AnswerRe: Customize Text Box Pin
Dave Kreskowiak28-Jun-07 7:54
mveDave Kreskowiak28-Jun-07 7:54 
AnswerRe: Customize Text Box Pin
koolprasad200329-Jun-07 0:58
professionalkoolprasad200329-Jun-07 0:58 
GeneralRe: Customize Text Box Pin
Dave Kreskowiak29-Jun-07 3:23
mveDave Kreskowiak29-Jun-07 3:23 
QuestionPrinting from a Device application Pin
dptalt28-Jun-07 7:09
dptalt28-Jun-07 7:09 
AnswerRe: Printing from a Device application Pin
Dave Kreskowiak28-Jun-07 8:01
mveDave Kreskowiak28-Jun-07 8:01 

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.