home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form APIMLOGO
- BackColor = &H00C0C0C0&
- BorderStyle = 0 'None
- Caption = "ABOUT..."
- ClientHeight = 2445
- ClientLeft = 750
- ClientTop = 1755
- ClientWidth = 5775
- ClipControls = 0 'False
- Height = 2850
- Left = 690
- LinkTopic = "Form3"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 2430.091
- ScaleMode = 0 'User
- ScaleWidth = 5775
- Top = 1410
- Width = 5895
- Begin SSPanel Panel3D1
- BevelWidth = 2
- Height = 2445
- Left = 0
- Outline = -1 'True
- RoundedCorners = 0 'False
- TabIndex = 3
- Top = 0
- Width = 5775
- Begin PictureBox Logo2
- AutoSize = -1 'True
- Height = 510
- Left = 4950
- Picture = APIMLOGO.FRX:0000
- ScaleHeight = 32
- ScaleMode = 3 'Pixel
- ScaleWidth = 32
- TabIndex = 6
- Top = 630
- Width = 510
- End
- Begin PictureBox Logo1
- AutoSize = -1 'True
- Height = 510
- Left = 270
- Picture = APIMLOGO.FRX:0302
- ScaleHeight = 32
- ScaleMode = 3 'Pixel
- ScaleWidth = 32
- TabIndex = 5
- Top = 630
- Width = 510
- End
- Begin CommandButton btnOK
- BackColor = &H00C0C0C0&
- Caption = "&Ok"
- Height = 375
- Left = 2250
- TabIndex = 4
- Top = 1890
- Visible = 0 'False
- Width = 1275
- End
- Begin Label Version
- Alignment = 2 'Center
- BackColor = &H00C0C0C0&
- Caption = "Version 1.1"
- ForeColor = &H00000000&
- Height = 195
- Left = 2160
- TabIndex = 7
- Top = 900
- Width = 1455
- End
- Begin Label ProgrName
- Alignment = 2 'Center
- BackColor = &H00C0C0C0&
- Caption = "API Magic"
- FontBold = -1 'True
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 13.5
- FontStrikethru = 0 'False
- FontUnderline = -1 'True
- ForeColor = &H00000000&
- Height = 360
- Left = 1080
- TabIndex = 0
- Top = 450
- Width = 3615
- End
- Begin Label Copyright
- Alignment = 2 'Center
- BackColor = &H00C0C0C0&
- Caption = "Copyright
- 1995 M.J. Warwick"
- ForeColor = &H00000000&
- Height = 195
- Left = 1080
- TabIndex = 1
- Top = 1200
- Width = 3615
- End
- Begin Label DistText
- Alignment = 2 'Center
- BackColor = &H00C0C0C0&
- Caption = "Please Distribute Freely Without Modification Or Charge."
- ForeColor = &H00000000&
- Height = 195
- Left = 90
- TabIndex = 2
- Top = 1530
- Width = 5625
- End
- End
- Option Explicit
- Sub btnOK_Click ()
- 'unload About window
- Unload Me
- End Sub
- Sub Form_Load ()
- 'centre form on screen
- Center_Form Me
- 'flag this form exists for animation purposes
- AboutLoaded = True
- End Sub
- Sub Form_Unload (Cancel As Integer)
- 'flag this form no longer exists
- AboutLoaded = False
- End Sub
-