home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form frmAbout
- BorderStyle = 0 'None
- Caption = "About"
- ClientHeight = 2520
- ClientLeft = 3012
- ClientTop = 2772
- ClientWidth = 4560
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 700
- size = 7.8
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000008&
- Height = 2904
- Icon = "Abtinvi.frx":0000
- KeyPreview = -1 'True
- Left = 2964
- LinkTopic = "Form1"
- LockControls = -1 'True
- ScaleHeight = 2520
- ScaleWidth = 4560
- Top = 2436
- Width = 4656
- Begin Mh3dlblLib.Mh3dLabel Mh3dLabelBackGround
- Height = 2412
- Left = 0
- TabIndex = 0
- Top = 0
- Width = 4452
- _Version = 65536
- _ExtentX = 7853
- _ExtentY = 4255
- _StockProps = 77
- BackColor = -2147483643
- TintColor = 16711935
- Caption = ""
- AutoSize = -1 'True
- BevelSize = 2
- BevelStyle = 1
- BorderStyle = 0
- Picture = "Abtinvi.frx":0442
- Begin Mh3dlblLib.Mh3dLabel Mh3dLabel1
- Height = 528
- Index = 1
- Left = 108
- TabIndex = 1
- Top = 1140
- Width = 4212
- _Version = 65536
- _ExtentX = 7430
- _ExtentY = 931
- _StockProps = 77
- BackColor = -2147483643
- TintColor = 16711935
- Caption = "For information on our other Cool Tools give our pre-sales technicians a call at:"
- AutoSize = -1 'True
- BorderStyle = 0
- Picture = "Abtinvi.frx":045E
- Multiline = -1 'True
- End
- Begin Mh3dlblLib.Mh3dLabel Mh3dLabel2
- Height = 252
- Index = 3
- Left = 108
- TabIndex = 2
- Top = 2076
- Width = 4212
- _Version = 65536
- _ExtentX = 7430
- _ExtentY = 445
- _StockProps = 77
- BackColor = -2147483643
- TintColor = 16711935
- Caption = "By Hassan Davis"
- AutoSize = -1 'True
- BorderStyle = 0
- FontStyle = 3
- Picture = "Abtinvi.frx":047A
- End
- Begin Mh3dlblLib.Mh3dLabel Mh3dLabel3
- Height = 792
- Index = 0
- Left = 108
- TabIndex = 3
- Top = 108
- Width = 4212
- _Version = 65536
- _ExtentX = 7430
- _ExtentY = 1397
- _StockProps = 77
- BackColor = -2147483643
- BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
- name = "MS Sans Serif"
- charset = 0
- weight = 700
- size = 13.8
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- TintColor = 16711935
- Caption = "MicroHelp MhInvisible Example"
- AutoSize = -1 'True
- BevelSize = 2
- BevelStyle = 1
- BorderStyle = 0
- FontStyle = 1
- Picture = "Abtinvi.frx":0496
- Multiline = -1 'True
- End
- Begin Mh3dlblLib.Mh3dLabel Mh3dLabelDescription
- Height = 252
- Index = 2
- Left = 168
- TabIndex = 4
- Top = 1680
- Width = 4092
- _Version = 65536
- _ExtentX = 7218
- _ExtentY = 445
- _StockProps = 77
- BackColor = -2147483643
- TintColor = 16711935
- Caption = "1-800-922-3383"
- AutoSize = -1 'True
- BorderStyle = 0
- Picture = "Abtinvi.frx":04B2
- End
- End
- Attribute VB_Name = "frmAbout"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit ' always!
- Private Sub Form_Click()
- ' close the about box
- Unload Me
- End Sub
- Private Sub Form_KeyPress(KeyAscii As Integer)
- ' close the about box
- Unload Me
- End Sub
- Private Sub Form_Load()
- Screen.MousePointer = vbHourglass
- ' size form to background label size
- Height = Mh3dLabelBackGround.Height
- Width = Mh3dLabelBackGround.Width
- ' center the form to the screen
- Move Abs(Screen.Width - Width) \ 2, Abs(Screen.Height - Height) \ 2
- Screen.MousePointer = vbDefault
- End Sub
- Private Sub Form_LostFocus()
- ' close the about box
- Unload Me
- End Sub
- Private Sub Mh3dLabel1_Click(Index As Integer)
- ' close the about box
- Unload Me
- End Sub
- Private Sub Mh3dLabel2_Click(Index As Integer)
- ' close the about box
- Unload Me
- End Sub
- Private Sub Mh3dLabel3_Click(Index As Integer)
- ' close the about box
- Unload Me
- End Sub
- Private Sub Mh3dLabelBackGround_Click()
- ' close the about box
- Unload Me
- End Sub
- Private Sub Mh3dLabelDescription_Click(Index As Integer)
- ' close the about box
- Unload Me
- End Sub
-