home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form frmAbout
- BackColor = &H00C0C0C0&
- BorderStyle = 3 'Fixed Double
- Caption = "About Clipboard Printer"
- ClientHeight = 1530
- ClientLeft = 4080
- ClientTop = 1260
- ClientWidth = 4500
- Height = 1935
- Icon = ABOUT.FRX:0000
- Left = 4020
- LinkTopic = "Form2"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 1530
- ScaleWidth = 4500
- Top = 915
- Width = 4620
- Begin CommandButton Command1
- BackColor = &H00FFFFFF&
- Caption = "OK"
- Height = 375
- Left = 3420
- TabIndex = 2
- Top = 1080
- Width = 915
- End
- Begin Label Label3
- BackColor = &H00C0C0C0&
- Caption = "Email: 100413.1342@CompuServe.com"
- Height = 255
- Left = 780
- TabIndex = 4
- Top = 720
- Width = 3555
- End
- Begin Image Image1
- Height = 480
- Left = 120
- Top = 120
- Width = 480
- End
- Begin Label Label4
- BackColor = &H00C0C0C0&
- Caption = "This program is Freeware."
- Height = 195
- Left = 780
- TabIndex = 3
- Top = 1080
- Width = 2235
- End
- Begin Label Label2
- BackColor = &H00C0C0C0&
- Caption = "Author: Rob McIntosh"
- Height = 195
- Left = 780
- TabIndex = 1
- Top = 420
- Width = 2295
- End
- Begin Label Label1
- BackColor = &H00C0C0C0&
- Caption = "Clipboard Printer for Windows"
- Height = 195
- Left = 780
- TabIndex = 0
- Top = 120
- Width = 2595
- End
- Option Explicit
- Sub Command1_Click ()
- Unload Me
- End Sub
- Sub Form_Load ()
- 'Centre the Form on the Screen
- Move (screen.Width / 2) - (Width / 2), (screen.Height / 2) - (Height / 2)
- 'load up the icon
- image1.Picture = frmClipPrt.Icon
- End Sub
-