Click here to Skip to main content
15,912,578 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionColor precentage Pin
whoispiyush3-Oct-06 20:31
whoispiyush3-Oct-06 20:31 
AnswerRe: Color precentage Pin
Christian Graus3-Oct-06 23:14
protectorChristian Graus3-Oct-06 23:14 
Questioneasy question on combo box Pin
IlanTal3-Oct-06 20:11
IlanTal3-Oct-06 20:11 
AnswerRe: easy question on combo box Pin
whoispiyush3-Oct-06 20:33
whoispiyush3-Oct-06 20:33 
GeneralRe: easy question on combo box Pin
IlanTal3-Oct-06 20:53
IlanTal3-Oct-06 20:53 
GeneralRe: easy question on combo box Pin
whoispiyush4-Oct-06 16:55
whoispiyush4-Oct-06 16:55 
GeneralRe: easy question on combo box Pin
IlanTal4-Oct-06 19:43
IlanTal4-Oct-06 19:43 
AnswerRe: easy question on combo box Pin
Dave Sexton3-Oct-06 21:55
Dave Sexton3-Oct-06 21:55 
Use NumSamp.SelectedItem. If you're coding with Option Strict On use the .ToString() method as well.

Sample

Private Sub Button1_Click(...) Handles Button1.Click
        'pass value of selected item to Form2
        Dim frm2 As New Form2
        frm2.Text = Me.ComboBox1.SelectedItem.ToString
        frm2.Show()
    End Sub

GeneralRe: easy question on combo box Pin
IlanTal3-Oct-06 22:50
IlanTal3-Oct-06 22:50 
QuestionHow to select specific data from textfile Pin
TeiUKei3-Oct-06 17:23
TeiUKei3-Oct-06 17:23 
AnswerRe: How to select specific data from textfile Pin
Christian Graus3-Oct-06 18:07
protectorChristian Graus3-Oct-06 18:07 
GeneralRe: How to select specific data from textfile Pin
TeiUKei3-Oct-06 18:48
TeiUKei3-Oct-06 18:48 
GeneralRe: How to select specific data from textfile Pin
Christian Graus3-Oct-06 18:50
protectorChristian Graus3-Oct-06 18:50 
GeneralRe: How to select specific data from textfile Pin
TeiUKei3-Oct-06 18:54
TeiUKei3-Oct-06 18:54 
GeneralRe: How to select specific data from textfile Pin
Steve :)3-Oct-06 21:14
Steve :)3-Oct-06 21:14 
GeneralRe: How to select specific data from textfile Pin
TeiUKei3-Oct-06 21:19
TeiUKei3-Oct-06 21:19 
Questionuploading huge chunk file Pin
Jay Nathan13-Oct-06 15:17
Jay Nathan13-Oct-06 15:17 
AnswerRe: uploading huge chunk file Pin
Dave Kreskowiak3-Oct-06 18:28
mveDave Kreskowiak3-Oct-06 18:28 
GeneralRe: uploading huge chunk file Pin
Jay Nathan14-Oct-06 1:02
Jay Nathan14-Oct-06 1:02 
GeneralRe: uploading huge chunk file Pin
Dave Kreskowiak4-Oct-06 2:03
mveDave Kreskowiak4-Oct-06 2:03 
Question.NET DataTable Search Pin
nlindley73-Oct-06 10:48
nlindley73-Oct-06 10:48 
AnswerRe: .NET DataTable Search Pin
mr_lasseter3-Oct-06 13:29
mr_lasseter3-Oct-06 13:29 
GeneralRe: .NET DataTable Search Pin
nlindley74-Oct-06 3:18
nlindley74-Oct-06 3:18 
GeneralRe: .NET DataTable Search Pin
zacharyshroyer4-Oct-06 3:36
zacharyshroyer4-Oct-06 3:36 
GeneralRe: .NET DataTable Search Pin
nlindley74-Oct-06 6:55
nlindley74-Oct-06 6:55 

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.