Click here to Skip to main content
16,005,162 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRE VB6 NETWORK SCRIPT Pin
sltan19-Dec-04 22:10
sltan19-Dec-04 22:10 
GeneralRe: RE VB6 NETWORK SCRIPT Pin
Nicholas Cardi20-Dec-04 6:05
Nicholas Cardi20-Dec-04 6:05 
GeneralBring a line or rectange to front Pin
Ehmed Owais19-Dec-04 21:35
Ehmed Owais19-Dec-04 21:35 
GeneralMove the Tab from one Field to Another Pin
loolita2719-Dec-04 21:29
loolita2719-Dec-04 21:29 
GeneralRe: Move the Tab from one Field to Another Pin
Tom John20-Dec-04 0:48
Tom John20-Dec-04 0:48 
GeneralRe: Move the Tab from one Field to Another Pin
loolita2720-Dec-04 20:56
loolita2720-Dec-04 20:56 
GeneralRe: Move the Tab from one Field to Another Pin
Deemo21-Dec-04 21:17
Deemo21-Dec-04 21:17 
GeneralRe: Move the Tab from one Field to Another Pin
Deemo22-Dec-04 9:46
Deemo22-Dec-04 9:46 
No panic!!!

This was resolved by the following:

Private Sub TextBox1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox1.KeyPress
If e.KeyChar = Chr(13) Then
TextBox2.Focus()
e.Handled = True
End If
End Sub
Generalmoving a button Pin
GaryKoh19-Dec-04 16:58
GaryKoh19-Dec-04 16:58 
GeneralRe: moving a button Pin
Jay Shankar19-Dec-04 18:08
Jay Shankar19-Dec-04 18:08 
GeneralRe: moving a button Pin
Ehmed Owais19-Dec-04 21:35
Ehmed Owais19-Dec-04 21:35 
GeneralRe: moving a button Pin
GaryKoh21-Dec-04 13:47
GaryKoh21-Dec-04 13:47 
GeneralCommand line code needed Pin
wrh19-Dec-04 15:30
wrh19-Dec-04 15:30 
GeneralRe: Command line code needed Pin
Makniteasy19-Dec-04 16:55
Makniteasy19-Dec-04 16:55 
QuestionSQL? Pin
Makniteasy19-Dec-04 11:43
Makniteasy19-Dec-04 11:43 
AnswerRe: SQL? Pin
Jay Shankar19-Dec-04 18:18
Jay Shankar19-Dec-04 18:18 
GeneralRe: SQL? Pin
ScottSingleton20-Dec-04 8:20
ScottSingleton20-Dec-04 8:20 
GeneralRe: SQL? Pin
Jay Shankar20-Dec-04 13:09
Jay Shankar20-Dec-04 13:09 
GeneralRe: SQL? Pin
Makniteasy20-Dec-04 19:10
Makniteasy20-Dec-04 19:10 
GeneralRe: SQL? Pin
Makniteasy20-Dec-04 19:15
Makniteasy20-Dec-04 19:15 
GeneralCrystal Reports - Database Login Pin
Terrence J. Joubert19-Dec-04 9:08
Terrence J. Joubert19-Dec-04 9:08 
GeneralRe: Crystal Reports - Database Login Pin
ScottSingleton20-Dec-04 8:05
ScottSingleton20-Dec-04 8:05 
GeneralGetting a Type of Me Pin
Todd Davis19-Dec-04 5:12
Todd Davis19-Dec-04 5:12 
GeneralCreating an OCX. Pin
dSolariuM19-Dec-04 3:26
dSolariuM19-Dec-04 3:26 
GeneralRe: Creating an OCX. Pin
Dave Kreskowiak19-Dec-04 10:23
mveDave Kreskowiak19-Dec-04 10:23 

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.