home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form Form1
- Caption = "Cursor-In-A-Box Demo"
- ClientHeight = 5280
- ClientLeft = 1155
- ClientTop = 1485
- ClientWidth = 7365
- Height = 5805
- Left = 1095
- LinkTopic = "Form1"
- ScaleHeight = 5280
- ScaleWidth = 7365
- Top = 1020
- Width = 7485
- Begin PictureBox Picture1
- BackColor = &H00FFFF00&
- Height = 3165
- Left = 1365
- ScaleHeight = 3135
- ScaleWidth = 4620
- TabIndex = 0
- Top = 1095
- Width = 4650
- Begin Label Label1
- AutoSize = -1 'True
- BackStyle = 0 'Transparent
- Caption = "Click Here to Exit"
- Height = 195
- Index = 2
- Left = 1470
- TabIndex = 3
- Top = 2385
- Width = 1500
- End
- Begin Label Label1
- AutoSize = -1 'True
- BackStyle = 0 'Transparent
- Caption = "See the form Load, Unload events, && BAS file."
- Height = 195
- Index = 1
- Left = 330
- TabIndex = 2
- Top = 1515
- Width = 3945
- End
- Begin Label Label1
- AutoSize = -1 'True
- BackStyle = 0 'Transparent
- Caption = "Mouse movement is restricted in this window."
- Height = 195
- Index = 0
- Left = 345
- TabIndex = 1
- Top = 1155
- Width = 3855
- End
- End
- Sub Form_Load ()
- ClipMouseMovement
- End Sub
- Sub Form_Unload (Cancel As Integer)
- UnClipMouseMovement
- End Sub
- Sub Label1_Click (Index As Integer)
- If Index = 2 Then Unload Me
- End Sub
-