Click here to Skip to main content
15,923,689 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Anyone tried CE programming in VB Pin
phped13-Dec-01 19:02
phped13-Dec-01 19:02 
GeneralRe: Anyone tried CE programming in VB Pin
5-Jan-02 19:15
suss5-Jan-02 19:15 
GeneralWorking Directory Pin
David Galloway12-Dec-01 5:21
David Galloway12-Dec-01 5:21 
GeneralRe: Working Directory Pin
chris foote14-Dec-01 11:09
chris foote14-Dec-01 11:09 
GeneralRe: Working Directory Pin
David Galloway17-Dec-01 2:02
David Galloway17-Dec-01 2:02 
GeneralSaving automaticly by VB. Pin
Ahuva12-Dec-01 4:32
Ahuva12-Dec-01 4:32 
GeneralRe: Saving automaticly by VB. Pin
Paul M Watt21-Apr-02 13:52
mentorPaul M Watt21-Apr-02 13:52 
GeneralRe: key press event !! Pin
Kurt12-Dec-01 2:36
Kurt12-Dec-01 2:36 
It's almost correct, but when you write keyascii = a it thinks that a is a variable. You have to write keyascii = vbKeyA.

-----------------------------------------------------
Private Sub Form_Load()
KeyPreview = True
End Sub

Private Sub Form_KeyPress(keyascii As Integer)
If (keyascii = vbKeyA) Then
Form2.Show
Else
Form3.Show
End If
End Sub
------------------------------------------------

/Kurt
GeneralCustom IE Toolbars in VB Pin
11-Dec-01 18:05
suss11-Dec-01 18:05 
GeneralKEYBOARD INPUT | NO MORE EVENT AFTER TWO KEY PRESSED Pin
11-Dec-01 15:30
suss11-Dec-01 15:30 
GeneralVB to C manipulation Pin
9-Dec-01 19:08
suss9-Dec-01 19:08 
GeneralRe: VB to C manipulation Pin
James T. Johnson17-Dec-01 2:33
James T. Johnson17-Dec-01 2:33 
GeneralDirect3D skin meshes Pin
Kelvzs9-Dec-01 18:01
Kelvzs9-Dec-01 18:01 
GeneralGET PUT and UDT Pin
kwk6-Dec-01 16:17
kwk6-Dec-01 16:17 
Generaladding controls at runtime Pin
markmyb5-Dec-01 21:44
markmyb5-Dec-01 21:44 
GeneralRe: adding controls at runtime Pin
Michael P Butler5-Dec-01 23:59
Michael P Butler5-Dec-01 23:59 
GeneralRe: adding controls at runtime Pin
10-Dec-01 14:47
suss10-Dec-01 14:47 
GeneralRe: adding controls at runtime Pin
23-Dec-01 6:47
suss23-Dec-01 6:47 
GeneralGet web site content Pin
5-Dec-01 16:03
suss5-Dec-01 16:03 
GeneralRe: Get web site content Pin
11-Dec-01 18:09
suss11-Dec-01 18:09 
Generalchanging msgraph data labels using code Pin
5-Dec-01 5:43
suss5-Dec-01 5:43 
GeneralVB.Net UserControl Pin
Makyana4-Dec-01 14:32
Makyana4-Dec-01 14:32 
GeneralCreate a new file by dragging from app Pin
Randy Magnuson4-Dec-01 12:29
Randy Magnuson4-Dec-01 12:29 
GeneralHandling Class-Module Errors in Form Pin
Firoz3-Dec-01 23:48
Firoz3-Dec-01 23:48 
Generallogoff Pin
loveuever200030-Nov-01 23:56
loveuever200030-Nov-01 23:56 

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.