Click here to Skip to main content
15,890,512 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionRe: open window using vb Pin
richardw482-Oct-08 22:11
richardw482-Oct-08 22:11 
QuestionVS 2008 Express - need to create a setup package Pin
Anoop Brijmohun2-Oct-08 0:22
Anoop Brijmohun2-Oct-08 0:22 
AnswerRe: VS 2008 Express - need to create a setup package Pin
Johan Hakkesteegt2-Oct-08 1:47
Johan Hakkesteegt2-Oct-08 1:47 
AnswerRe: VS 2008 Express - need to create a setup package Pin
jzonthemtn2-Oct-08 6:01
jzonthemtn2-Oct-08 6:01 
GeneralRe: VS 2008 Express - need to create a setup package Pin
Paul Conrad2-Oct-08 9:35
professionalPaul Conrad2-Oct-08 9:35 
GeneralRe: VS 2008 Express - need to create a setup package Pin
Anoop Brijmohun2-Oct-08 20:27
Anoop Brijmohun2-Oct-08 20:27 
QuestionWinForms DatagridView Field Pin
MatthysDT1-Oct-08 23:12
MatthysDT1-Oct-08 23:12 
AnswerRe: WinForms DatagridView Field Pin
George B Gilbert2-Oct-08 6:40
George B Gilbert2-Oct-08 6:40 
Assuming a datagridview control named dgvRows:
Private Sub dgvRows_KeyDown( _
            ByVal sender As Object, _
            ByVal e As System.Windows.Forms.KeyEventArgs) _
            Handles dgvRows.KeyDown
    ' Detect the Enter key
    If e.KeyCode = Keys.Return Then
        ' Determine the currently selected column
        Select Case dgvRows.SelectedCells(0).ColumnIndex
            Case 0
                ' Determine the currently selected row
                Select Case dgvRows.SelectedCells(0).RowIndex
                    Case 0
                        ' Code to manipulate the selected cell at (0,0)
                    Case 1
                        ' Code to manipulate the selected cell at (0,1)
                        '
                        '
                    Case 99
                        ' Etc
                End Select
            Case 1
                '
                '
            Case 99
        End Select
    End If
End Sub

GeneralRe: WinForms DatagridView Field Pin
MatthysDT2-Oct-08 20:07
MatthysDT2-Oct-08 20:07 
GeneralRe: WinForms DatagridView Field Pin
George B Gilbert3-Oct-08 9:48
George B Gilbert3-Oct-08 9:48 
GeneralRe: WinForms DatagridView Field Pin
MatthysDT6-Oct-08 2:13
MatthysDT6-Oct-08 2:13 
GeneralRe: WinForms DatagridView Field Pin
George B Gilbert6-Oct-08 5:42
George B Gilbert6-Oct-08 5:42 
QuestionExport DataGrid to Excel Pin
jalpam1-Oct-08 20:11
jalpam1-Oct-08 20:11 
AnswerRe: Export DataGrid to Excel Pin
Ashfield1-Oct-08 21:17
Ashfield1-Oct-08 21:17 
AnswerRe: Export DataGrid to Excel Pin
Johan Hakkesteegt1-Oct-08 23:44
Johan Hakkesteegt1-Oct-08 23:44 
GeneralRe: Export DataGrid to Excel Pin
jalpam3-Oct-08 1:21
jalpam3-Oct-08 1:21 
QuestionNeed Help with the DirectoryServices namespace in .net 3.5 Pin
timraines1-Oct-08 19:27
timraines1-Oct-08 19:27 
AnswerRe: Need Help with the DirectoryServices namespace in .net 3.5 Pin
timraines2-Oct-08 3:22
timraines2-Oct-08 3:22 
AnswerRe: Need Help with the DirectoryServices namespace in .net 3.5 [modified] Pin
richardw482-Oct-08 3:54
richardw482-Oct-08 3:54 
GeneralRe: Need Help with the DirectoryServices namespace in .net 3.5 Pin
timraines2-Oct-08 18:03
timraines2-Oct-08 18:03 
GeneralRe: Need Help with the DirectoryServices namespace in .net 3.5 Pin
timraines2-Oct-08 20:07
timraines2-Oct-08 20:07 
QuestionRevert to last successful build? Pin
craigmg781-Oct-08 6:49
craigmg781-Oct-08 6:49 
AnswerRe: Revert to last successful build? Pin
jzonthemtn1-Oct-08 9:24
jzonthemtn1-Oct-08 9:24 
AnswerRe: Revert to last successful build? Pin
Paul Conrad1-Oct-08 10:02
professionalPaul Conrad1-Oct-08 10:02 
QuestionVB code for sending an email through .net application using smtp Pin
lostboy2411-Oct-08 4:09
lostboy2411-Oct-08 4: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.