home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form frmAbout
- BorderStyle = 0 'None
- Caption = "About"
- ClientHeight = 2640
- ClientLeft = 6948
- ClientTop = 1632
- 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 = 3024
- Icon = "abtwave.frx":0000
- KeyPreview = -1 'True
- Left = 6900
- LinkTopic = "Form1"
- LockControls = -1 'True
- ScaleHeight = 2640
- ScaleWidth = 4680
- Top = 1296
- 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
- RoundedCorners = 0 'False
- 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 MhWave 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_Activate()
- ' play the 800 number!!!
- With frmMhWaveOCX_Demo
- frmMhWaveOCX_Demo.AboutBoxShowing = True
- If .NumbersFileLoaded Then
- With !MhWaveDemo
- .Number = "1"
- .Number = "800"
- .Number = "9"
- .Number = "2"
- .Number = "2"
- .Number = "3"
- .Number = "3"
- .Number = "8"
- .Number = "3"
- End With ' !MhWaveDemo
- End If
- End With ' frmMhWaveOCX_Demo
- End Sub
- 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
- Move Abs(Screen.Width - Width) \ 2, Abs(Screen.Height - Height) \ 2
- End Sub
- Private Sub Form_LostFocus()
- ' close the about box
- Unload Me
- End Sub
- Private Sub Form_Unload(Cancel As Integer)
- frmMhWaveOCX_Demo.AboutBoxShowing = False
- 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
-