home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form frmAbout
- BorderStyle = 0 'None
- Caption = "About"
- ClientHeight = 2640
- ClientLeft = 2028
- ClientTop = 2304
- ClientWidth = 4680
- 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 = 3012
- Icon = "ABTALRM.frx":0000
- KeyPreview = -1 'True
- Left = 1980
- LinkTopic = "Form1"
- LockControls = -1 'True
- ScaleHeight = 2640
- ScaleWidth = 4680
- Top = 1980
- Width = 4776
- Begin Threed.SSPanel panBackground
- Height = 2460
- Left = 0
- TabIndex = 0
- Top = 0
- Width = 4488
- _Version = 65536
- _ExtentX = 7916
- _ExtentY = 4339
- _StockProps = 15
- Caption = "SSPanel1"
- BevelWidth = 3
- Outline = -1 'True
- Begin Threed.SSPanel panDescription
- Height = 792
- Left = 144
- TabIndex = 1
- Top = 144
- Width = 4212
- _Version = 65536
- _ExtentX = 7430
- _ExtentY = 1397
- _StockProps = 15
- Caption = "MicroHelp MhAlarm Example"
- 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
- BevelWidth = 2
- Font3D = 2
- End
- Begin Threed.SSPanel lblName
- Height = 252
- Left = 144
- TabIndex = 2
- Top = 2124
- Width = 4212
- _Version = 65536
- _ExtentX = 7430
- _ExtentY = 445
- _StockProps = 15
- Caption = "By Hassan Davis"
- BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
- name = "MS Sans Serif"
- charset = 0
- weight = 400
- size = 7.8
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- BevelWidth = 0
- Font3D = 3
- Alignment = 8
- End
- Begin VB.Label lblPhoneNumber
- Alignment = 2 'Center
- Caption = "1-800-922-3383"
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 400
- size = 9.6
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- Height = 252
- Left = 216
- TabIndex = 4
- Top = 1692
- Width = 4092
- End
- Begin VB.Label lblDescription
- Alignment = 2 'Center
- Caption = "For information on our other Cool Tools give our pre-sales technicians a call at:"
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 400
- size = 9.6
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- Height = 480
- Left = 144
- TabIndex = 3
- Top = 1152
- Width = 4212
- End
- End
- Attribute VB_Name = "frmAbout"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit ' always
- Private Sub Form_Click()
- ' unload the about box
- Unload Me
- End Sub
- Private Sub Form_KeyPress(KeyAscii As Integer)
- ' unload the about box
- Unload Me
- End Sub
- Private Sub Form_Load()
- ' resize the form to the background panel's size
- Width = panBackGround.Width
- Height = panBackGround.Height
- ' center the form to the screen using the parent object's CenterForm method
- Call DemoMain.CenterForm(Me)
- End Sub
- Private Sub Form_LostFocus()
- ' close the about box
- Unload Me
- End Sub
- Private Sub lblDescription_Click()
- ' close the about box
- Unload Me
- End Sub
- Private Sub lblName_Click()
- ' close the about box
- Unload Me
- End Sub
- Private Sub lblPhoneNumber_Click()
- ' close the about box
- Unload Me
- End Sub
- Private Sub panBackground_Click()
- ' close the about box
- Unload Me
- End Sub
- Private Sub panDescription_Click()
- ' close the about box
- Unload Me
- End Sub
-