Click here to Skip to main content
15,881,588 members
Home / Discussions / Visual Basic
   

Visual Basic

 
Questioncombination of keys Pin
sowmi_ssk14-Sep-07 4:18
sowmi_ssk14-Sep-07 4:18 
AnswerRe: combination of keys Pin
Salman Sheikh14-Sep-07 20:11
Salman Sheikh14-Sep-07 20:11 
QuestionFACING PROBLEM AFTER UPLOADING A WEBSITE Pin
CrazyCoder2614-Sep-07 4:12
CrazyCoder2614-Sep-07 4:12 
AnswerRe: FACING PROBLEM AFTER UPLOADING A WEBSITE Pin
Christian Graus14-Sep-07 4:16
protectorChristian Graus14-Sep-07 4:16 
GeneralRe: FACING PROBLEM AFTER UPLOADING A WEBSITE Pin
CrazyCoder2614-Sep-07 4:21
CrazyCoder2614-Sep-07 4:21 
GeneralRe: FACING PROBLEM AFTER UPLOADING A WEBSITE Pin
Christian Graus14-Sep-07 5:29
protectorChristian Graus14-Sep-07 5:29 
Questionenter key problem in datagridview control Pin
sowmi_ssk14-Sep-07 4:08
sowmi_ssk14-Sep-07 4:08 
AnswerRe: enter key problem in datagridview control Pin
Taylor Kobani14-Sep-07 9:40
Taylor Kobani14-Sep-07 9:40 
make the class below.run the program and add the control to your project.

Public Class MyDataGridView
    Inherits DataGridView
    Protected Overrides Sub OnKeyDown(ByVal e As System.Windows.Forms.KeyEventArgs)
        If e.KeyCode = Keys.Enter Then

            Dim j As New System.Windows.Forms.KeyEventArgs(Keys.Tab)
            MyBase.OnKeyDown(j)
        Else
            MyBase.OnKeyDown(e)
        End If

    End Sub
End Class


A.E.K

Questionpointer to structure in VB.NET Pin
djdjoko14-Sep-07 0:52
djdjoko14-Sep-07 0:52 
AnswerRe: pointer to structure in VB.NET Pin
Dave Kreskowiak14-Sep-07 6:04
mveDave Kreskowiak14-Sep-07 6:04 
QuestionLanguage Problem Pin
Rupesh Kumar Swami14-Sep-07 0:40
Rupesh Kumar Swami14-Sep-07 0:40 
AnswerRe: Language Problem Pin
Tom Deketelaere14-Sep-07 1:19
professionalTom Deketelaere14-Sep-07 1:19 
GeneralRe: Language Problem Pin
Rupesh Kumar Swami15-Sep-07 1:48
Rupesh Kumar Swami15-Sep-07 1:48 
GeneralRe: Language Problem Pin
Tom Deketelaere16-Sep-07 2:59
professionalTom Deketelaere16-Sep-07 2:59 
QuestionProgrammatically highlight/select DataGridView column Pin
penguin500014-Sep-07 0:30
penguin500014-Sep-07 0:30 
AnswerRe: Programmatically highlight/select DataGridView column Pin
GuyThiebaut14-Sep-07 2:30
professionalGuyThiebaut14-Sep-07 2:30 
Questiondisabling explorer.exe Pin
freakinacage13-Sep-07 23:46
freakinacage13-Sep-07 23:46 
AnswerRe: disabling explorer.exe Pin
Tom Deketelaere14-Sep-07 1:22
professionalTom Deketelaere14-Sep-07 1:22 
Questionextract images from oracle database Pin
khaledch13-Sep-07 23:36
khaledch13-Sep-07 23:36 
AnswerRe: extract images from oracle database Pin
Dave Kreskowiak14-Sep-07 5:52
mveDave Kreskowiak14-Sep-07 5:52 
QuestionAccess database Problem Pin
dimuthuvbnet13-Sep-07 22:37
dimuthuvbnet13-Sep-07 22:37 
AnswerRe: Access database Problem Pin
GuyThiebaut13-Sep-07 22:57
professionalGuyThiebaut13-Sep-07 22:57 
QuestionSetup Instalation Pin
juli Paris13-Sep-07 22:27
juli Paris13-Sep-07 22:27 
AnswerRe: Setup Instalation Pin
Dave Kreskowiak14-Sep-07 5:49
mveDave Kreskowiak14-Sep-07 5:49 
QuestionAccessing default media player Pin
juli Paris13-Sep-07 22:18
juli Paris13-Sep-07 22:18 

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.