home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form Form1
- BorderStyle = 1 'Fixed Single
- Caption = "Form1"
- ClientHeight = 4245
- ClientLeft = 4710
- ClientTop = 1830
- ClientWidth = 1920
- Height = 4650
- Left = 4650
- LinkTopic = "Form1"
- LockControls = -1 'True
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 4245
- ScaleWidth = 1920
- Top = 1485
- Width = 2040
- Begin VB.CommandButton Command1
- Caption = "Click Me!"
- Height = 360
- Left = 120
- TabIndex = 0
- Top = 135
- Width = 1695
- End
- Attribute VB_Name = "Form1"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Label1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
- If Button = 2 Then
- Form2.Visible = True
- End If
- End Sub
- Private Sub Command1_Click()
- Command1.Caption = "Click an Option"
- Form2.Show vbModal
- End Sub
-