Click here to Skip to main content
15,891,607 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Set round shape of Buttons in vb.net Pin
Smithers-Jones8-Mar-08 1:19
Smithers-Jones8-Mar-08 1:19 
GeneralRe: Set round shape of Buttons in vb.net Pin
Eslam Afifi8-Mar-08 22:25
Eslam Afifi8-Mar-08 22:25 
GeneralSpecify Paper size for Printing.PrintDocument Pin
teddycrew7-Mar-08 23:47
teddycrew7-Mar-08 23:47 
GeneralRe: Specify Paper size for Printing.PrintDocument Pin
Xmen Real 8-Mar-08 3:29
professional Xmen Real 8-Mar-08 3:29 
GeneralRe: Specify Paper size for Printing.PrintDocument Pin
teddycrew9-Mar-08 13:48
teddycrew9-Mar-08 13:48 
GeneralHaving problems with Int32 column Pin
AAGTHosting7-Mar-08 20:22
AAGTHosting7-Mar-08 20:22 
GeneralRe: Having problems with Int32 column Pin
Christian Graus7-Mar-08 21:51
protectorChristian Graus7-Mar-08 21:51 
GeneralRe: Having problems with Int32 column Pin
AAGTHosting8-Mar-08 7:43
AAGTHosting8-Mar-08 7:43 
here is my code.

Dim dt As New DataTable()
        Dim dr As Data.DataRow

For Each row As DataRow In dtStud.Rows
            dr = dt.NewRow()
            dr(0) = row("stud_name")
            dr(1) = row("stud_par_name")
            dr(2) = row("stud_id")

            ' get student instruments
            Call studentInstruments(Convert.ToInt32(row("stud_id")))

            ' create counter
            Dim intCount As Integer = 1

            For Each row2 As DataRow In dtStudInst.Rows
                If intCount = 1 Then
                    strInst = Convert.ToString(row2("less_instrument"))
                Else
                    strInst += ", " & Convert.ToString(row2("less_instrument"))
                End If
            Next

            dr(3) = row("stud_phone")
            dr(4) = row("stud_cell")
            dr(5) = strInst

            dt.Rows.Add(dr)
        Next

QuestionHow to rotate a button control n degrees Pin
beaujess7-Mar-08 8:00
beaujess7-Mar-08 8:00 
GeneralRe: How to rotate a button control n degrees Pin
Smithers-Jones7-Mar-08 8:29
Smithers-Jones7-Mar-08 8:29 
GeneralRe: How to rotate a button control n degrees Pin
Paul Conrad7-Mar-08 14:19
professionalPaul Conrad7-Mar-08 14:19 
Generalnetwork communication .net vb between device and desktop Pin
Cory Kimble7-Mar-08 7:23
Cory Kimble7-Mar-08 7:23 
QuestionGetting control values into a report Pin
Member 45895427-Mar-08 7:08
Member 45895427-Mar-08 7:08 
GeneralDLL to call a function in a VB program Pin
steve_rm7-Mar-08 6:05
steve_rm7-Mar-08 6:05 
GeneralRe: DLL to call a function in a VB program Pin
Christian Graus7-Mar-08 10:10
protectorChristian Graus7-Mar-08 10:10 
QuestionWhy is this taking up all the memory? Pin
Jan Sommer7-Mar-08 4:22
Jan Sommer7-Mar-08 4:22 
GeneralPanels difficulty Pin
cstrader2327-Mar-08 2:19
cstrader2327-Mar-08 2:19 
GeneralRe: Panels difficulty Pin
Dave Kreskowiak7-Mar-08 10:16
mveDave Kreskowiak7-Mar-08 10:16 
GeneralRe: Panels difficulty Pin
cstrader2327-Mar-08 11:13
cstrader2327-Mar-08 11:13 
GeneralRe: Panels difficulty Pin
Dave Kreskowiak7-Mar-08 14:13
mveDave Kreskowiak7-Mar-08 14:13 
GeneralRe: Panels difficulty Pin
cstrader23210-Mar-08 2:59
cstrader23210-Mar-08 2:59 
QuestionConnecting to Outlook 2003 Pin
Giorgio Mantovani7-Mar-08 2:08
Giorgio Mantovani7-Mar-08 2:08 
Generaldatagridview Pin
bhavani_ns7-Mar-08 0:33
bhavani_ns7-Mar-08 0:33 
GeneralRe: datagridview Pin
cstrader2327-Mar-08 3:39
cstrader2327-Mar-08 3:39 
GeneralRe: datagridview Pin
bhavani_ns7-Mar-08 17:25
bhavani_ns7-Mar-08 17:25 

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.