home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form Form1
- Caption = "Ejemplo del m
- todo SetFocus"
- ClientHeight = 2430
- ClientLeft = 2610
- ClientTop = 2715
- ClientWidth = 3810
- Height = 2835
- Left = 2550
- LinkTopic = "Form1"
- ScaleHeight = 2430
- ScaleWidth = 3810
- Top = 2370
- Width = 3930
- Begin VB.CommandButton Command3
- Caption = "Command3"
- Height = 495
- Left = 480
- TabIndex = 2
- Top = 1680
- Width = 1215
- End
- Begin VB.CommandButton Command2
- Caption = "Command2"
- Height = 495
- Left = 480
- TabIndex = 1
- Top = 960
- Width = 1215
- End
- Begin VB.CommandButton Command1
- Caption = "Command1"
- Height = 495
- Left = 480
- TabIndex = 0
- Top = 240
- Width = 1215
- End
- Begin VB.TextBox Text3
- Height = 495
- Left = 2160
- TabIndex = 5
- Text = "Text3"
- Top = 1680
- Width = 1215
- End
- Begin VB.TextBox Text2
- Height = 495
- Left = 2160
- TabIndex = 4
- Text = "Text2"
- Top = 960
- Width = 1215
- End
- Begin VB.TextBox Text1
- Height = 495
- Left = 2160
- TabIndex = 3
- Text = "Text1"
- Top = 240
- Width = 1215
- End
- Attribute VB_Name = "Form1"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Private Sub Label1_Click()
- Text1.SetFocus
- End Sub
- Private Sub Label2_Click()
- Text2.SetFocus
- End Sub
- Private Sub Label3_Click()
- Text3.SetFocus
- End Sub
- Private Sub Command1_Click()
- Text1.SetFocus
- End Sub
- Private Sub Command2_Click()
- Text2.SetFocus
- End Sub
- Private Sub Command3_Click()
- Text3.SetFocus
- End Sub
-