|
|
Highlights
All Snippets
Top 100 Snippets
Librarians
gbCodeLib
By Language
VB6
JavaScript
Perl
HTML
SQL
Java
DOS
|
GBIC >>
Source Code >>
Visual Basic >> Snippet
|
All - use Enter key to move to next control in TAB sequence
'in the key-press event
If
KeyAscii
=
13
Then
SendKeys
"{Tab}"
KeyAscii
=
0
End If
|
|
|
|