Click here to Skip to main content
15,907,326 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Port Control vb.net Pin
Dave Kreskowiak11-Feb-07 16:36
mveDave Kreskowiak11-Feb-07 16:36 
GeneralRe: Port Control vb.net Pin
al96812-Feb-07 0:59
al96812-Feb-07 0:59 
QuestionThreed SS Controls Pin
DA_Loring11-Feb-07 4:36
DA_Loring11-Feb-07 4:36 
Questionitem with same key has already been adding Pin
charchabil0310-Feb-07 21:30
charchabil0310-Feb-07 21:30 
Questioncamera source Pin
Its_Me_Lenny10-Feb-07 16:32
Its_Me_Lenny10-Feb-07 16:32 
AnswerRe: camera source Pin
Christian Graus10-Feb-07 21:08
protectorChristian Graus10-Feb-07 21:08 
QuestionWeb Browser VB.net Pin
al96810-Feb-07 15:39
al96810-Feb-07 15:39 
AnswerRe: Web Browser VB.net [modified] Pin
M-Hall10-Feb-07 16:03
M-Hall10-Feb-07 16:03 
Use the forms KeyPress event
also set the forms keypreview property to true

Private Sub Form1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs)
If Char.IsControl(e.KeyChar) Then
If e.KeyChar.Equals(Chr(Keys.Return)) Then
'Your Code Here
End If
End If
End Sub


-- modified at 22:12 Saturday 10th February, 2007
GeneralRe: Web Browser VB.net Pin
al96811-Feb-07 9:38
al96811-Feb-07 9:38 
QuestionClosing a modal dialog box in another Windows app... Pin
Waushaka10-Feb-07 14:44
Waushaka10-Feb-07 14:44 
AnswerRe: Closing a modal dialog box in another Windows app... Pin
Christian Graus10-Feb-07 15:16
protectorChristian Graus10-Feb-07 15:16 
GeneralRe: Closing a modal dialog box in another Windows app... Pin
Waushaka10-Feb-07 15:31
Waushaka10-Feb-07 15:31 
GeneralRe: Closing a modal dialog box in another Windows app... Pin
Christian Graus10-Feb-07 15:42
protectorChristian Graus10-Feb-07 15:42 
GeneralRe: Closing a modal dialog box in another Windows app... Pin
Waushaka10-Feb-07 15:49
Waushaka10-Feb-07 15:49 
GeneralRe: Closing a modal dialog box in another Windows app... Pin
Christian Graus10-Feb-07 21:18
protectorChristian Graus10-Feb-07 21:18 
QuestionVB.Net 2005 form reset??? Pin
harveyhanson10-Feb-07 14:03
harveyhanson10-Feb-07 14:03 
AnswerRe: VB.Net 2005 form reset??? Pin
Christian Graus10-Feb-07 14:08
protectorChristian Graus10-Feb-07 14:08 
GeneralRe: VB.Net 2005 form reset??? Pin
harveyhanson10-Feb-07 14:10
harveyhanson10-Feb-07 14:10 
GeneralRe: VB.Net 2005 form reset??? Pin
Christian Graus10-Feb-07 14:28
protectorChristian Graus10-Feb-07 14:28 
QuestionVBA Excel Macros Question - Saving Pictures From the Web Pin
ghettoneck10-Feb-07 12:00
ghettoneck10-Feb-07 12:00 
AnswerRe: VBA Excel Macros Question - Saving Pictures From the Web Pin
Dave Kreskowiak10-Feb-07 13:04
mveDave Kreskowiak10-Feb-07 13:04 
GeneralRe: VBA Excel Macros Question - Saving Pictures From the Web Pin
ghettoneck10-Feb-07 13:33
ghettoneck10-Feb-07 13:33 
GeneralRe: VBA Excel Macros Question - Saving Pictures From the Web Pin
ghettoneck10-Feb-07 13:42
ghettoneck10-Feb-07 13:42 
QuestionUnpacking in VB.Net Pin
al96810-Feb-07 9:48
al96810-Feb-07 9:48 
Questionform/databse/if statement question. Pin
jady8410-Feb-07 7:17
jady8410-Feb-07 7:17 

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.