home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form Form1
- Caption = "Form1"
- ClientHeight = 2310
- ClientLeft = 1305
- ClientTop = 1470
- ClientWidth = 3675
- Height = 2715
- Left = 1245
- LinkTopic = "Form1"
- ScaleHeight = 2310
- ScaleWidth = 3675
- Top = 1125
- Width = 3795
- Begin CheckBox Check1
- Caption = "Check1"
- Height = 255
- HelpContextID = 1004
- Left = 2340
- TabIndex = 3
- Tag = "This is a really big Check Box with some really long ToolTips"
- Top = 600
- Width = 1215
- End
- Begin ListBox List1
- Height = 1590
- HelpContextID = 1002
- Left = 120
- TabIndex = 2
- Top = 600
- Width = 2115
- End
- Begin CommandButton Command1
- Caption = "Command1"
- Height = 375
- HelpContextID = 1003
- Left = 2340
- TabIndex = 1
- Tag = "This is a Command Button"
- Top = 120
- Width = 1215
- End
- Begin TextBox Text1
- Height = 375
- HelpContextID = 1001
- Left = 120
- TabIndex = 0
- Text = "Text1"
- Top = 120
- Width = 2115
- End
- Option Explicit
- 'See comments in TIPDEMO.BAS
- Sub Form_Activate ()
- Call dutip_SetTipForm(Me)
- End Sub
- Sub Form_QueryUnload (Cancel As Integer, UnloadMode As Integer)
- If UnloadMode <> 1 Then 'via code
- Cancel = True
- Call EndMain
- End If
- End Sub
-