home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form frmTip
- BorderStyle = 1 'Fixed Single
- Caption = "(tooltip)"
- ClientHeight = 855
- ClientLeft = 3045
- ClientTop = 2805
- ClientWidth = 1710
- ControlBox = 0 'False
- Height = 1260
- Left = 2985
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 855
- ScaleWidth = 1710
- Top = 2460
- Width = 1830
- Begin Timer tmrTip
- Enabled = 0 'False
- Left = 60
- Top = 360
- End
- Begin Label lblTip
- Caption = "(tooltip)"
- FontBold = 0 'False
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 8.25
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 195
- Left = 60
- TabIndex = 0
- Top = 60
- Width = 1575
- End
- Option Explicit
- 'This is the generic tooltip form. It's manipulated
- 'at runtime by the routines in DUTIP.BAS.
- Sub tmrTip_Timer ()
- Call dutip_PollTips
- End Sub
-