Click here to Skip to main content
15,918,889 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: implementing linq Pin
ganero23-Mar-08 1:33
ganero23-Mar-08 1:33 
Generalfilling 2 different combo boxes with info from same dataTable Pin
AAGTHosting21-Mar-08 11:54
AAGTHosting21-Mar-08 11:54 
GeneralRe: filling 2 different combo boxes with info from same dataTable Pin
Christian Graus21-Mar-08 12:18
protectorChristian Graus21-Mar-08 12:18 
GeneralRe: filling 2 different combo boxes with info from same dataTable Pin
AAGTHosting21-Mar-08 12:20
AAGTHosting21-Mar-08 12:20 
GeneralRe: filling 2 different combo boxes with info from same dataTable Pin
Christian Graus21-Mar-08 12:35
protectorChristian Graus21-Mar-08 12:35 
GeneralRe: filling 2 different combo boxes with info from same dataTable Pin
AAGTHosting21-Mar-08 13:30
AAGTHosting21-Mar-08 13:30 
GeneralRe: filling 2 different combo boxes with info from same dataTable Pin
Christian Graus21-Mar-08 13:54
protectorChristian Graus21-Mar-08 13:54 
GeneralRe: filling 2 different combo boxes with info from same dataTable Pin
AAGTHosting21-Mar-08 14:12
AAGTHosting21-Mar-08 14:12 
Right now it is not freezing. I just need to figure out how to populate this combo box with the teacher names.

Here is my code for cloning the datasource. I tried doing it several ways.

' query
        tableName = "tbl_teachers"
        dtTeachName = generalQuery()

        ' fill the teachers checked list box
        lstTeachers.DataSource = dtTeachName
        lstTeachers.DisplayMember = "teach_name"
        lstTeachers.ValueMember = "teach_id"
        cboSchedDur.SelectedItem = "This Week"
        'End If

        ' fill the teachers checked list box
        dtTNameClone = dtTeachName.Clone()
        cboSelectTeacher.DataSource = dtTNameClone
        cboSelectTeacher.DisplayMember = "teach_name"
        cboSelectTeacher.ValueMember = "teach_id"

GeneralRe: filling 2 different combo boxes with info from same dataTable Pin
Christian Graus21-Mar-08 14:24
protectorChristian Graus21-Mar-08 14:24 
GeneralRe: filling 2 different combo boxes with info from same dataTable Pin
AAGTHosting21-Mar-08 14:33
AAGTHosting21-Mar-08 14:33 
GeneralRe: filling 2 different combo boxes with info from same dataTable Pin
Christian Graus21-Mar-08 16:34
protectorChristian Graus21-Mar-08 16:34 
GeneralRe: filling 2 different combo boxes with info from same dataTable Pin
AAGTHosting21-Mar-08 19:22
AAGTHosting21-Mar-08 19:22 
GeneralRe: filling 2 different combo boxes with info from same dataTable Pin
Christian Graus21-Mar-08 19:37
protectorChristian Graus21-Mar-08 19:37 
GeneralRe: filling 2 different combo boxes with info from same dataTable Pin
AAGTHosting22-Mar-08 15:26
AAGTHosting22-Mar-08 15:26 
GeneralRe: filling 2 different combo boxes with info from same dataTable Pin
jimpar24-Mar-08 7:34
jimpar24-Mar-08 7:34 
GeneralIn order to evaluate an indexed property, the property must be qualified and the arguments must be explicitly supplied by the user Pin
saini arun21-Mar-08 6:22
saini arun21-Mar-08 6:22 
GeneralRe: In order to evaluate an indexed property, the property must be qualified and the arguments must be explicitly supplied by the user Pin
Kschuler21-Mar-08 6:47
Kschuler21-Mar-08 6:47 
GeneralRe: In order to evaluate an indexed property, the property must be qualified and the arguments must be explicitly supplied by the user Pin
saini arun21-Mar-08 6:57
saini arun21-Mar-08 6:57 
GeneralRe: In order to evaluate an indexed property, the property must be qualified and the arguments must be explicitly supplied by the user Pin
Kschuler21-Mar-08 7:47
Kschuler21-Mar-08 7:47 
GeneralRe: In order to evaluate an indexed property, the property must be qualified and the arguments must be explicitly supplied by the user Pin
saini arun21-Mar-08 8:09
saini arun21-Mar-08 8:09 
GeneralProgress Bar Update on Button Push Pin
Travis James21-Mar-08 6:12
Travis James21-Mar-08 6:12 
GeneralRe: Progress Bar Update on Button Push Pin
Kschuler21-Mar-08 6:50
Kschuler21-Mar-08 6:50 
GeneralDragging graphics images Pin
cstrader23221-Mar-08 6:08
cstrader23221-Mar-08 6:08 
GeneralRe: Dragging graphics images Pin
Christian Graus21-Mar-08 11:28
protectorChristian Graus21-Mar-08 11:28 
GeneralEncrypting the zip file Pin
snagashree21-Mar-08 0:09
snagashree21-Mar-08 0:09 

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.