home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form frmEasyTip
- Appearance = 0 'Flat
- BackColor = &H80000005&
- BorderStyle = 1 'Fixed Single
- ClientHeight = 690
- ClientLeft = 5430
- ClientTop = 3015
- ClientWidth = 2580
- ControlBox = 0 'False
- Height = 1095
- Left = 5370
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 690
- ScaleWidth = 2580
- ShowInTaskbar = 0 'False
- Top = 2670
- Width = 2700
- Begin VB.Timer tmrShow
- Interval = 1000
- Left = 2040
- Top = 120
- End
- Begin VB.Label lblEasyTip
- AutoSize = -1 'True
- BackStyle = 0 'Transparent
- Caption = "Do not modify this form."
- Height = 195
- Left = 240
- TabIndex = 0
- Top = 240
- Width = 1650
- End
- Attribute VB_Name = "frmEasyTip"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- Dim moEasyTip As New EasyTip
- Private Sub Form_Load()
- On Error Resume Next
- 'To create EasyTips with custom colors
- 'instate the two lines below by uncommenting them.
- 'moEasyTip.ForeColor = QBColor(15)
- 'moEasyTip.BackColor = QBColor(7)
- 'Once the EasyTip is diplayed, if the mouse pointer is left in the
- 'same position for 5 seconds, the EasyTip will be removed.
- 'To change the number of seconds, uncomment the following line.
- 'moEasyTip.SecondsToHide = 5
- End Sub
- Private Sub Form_Unload(Cancel As Integer)
- On Error Resume Next
- Set moEasyTip = Nothing
- End Sub
- Private Sub tmrShow_Timer()
- On Error Resume Next
- moEasyTip.Show Forms, Me
- End Sub
-