home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Monster Media 1994 #1
/
monster.zip
/
monster
/
WIN_UTL2
/
PWBROW12.ZIP
/
ABOUT.FRM
next >
Wrap
Text File
|
1994-01-27
|
3KB
|
90 lines
VERSION 2.00
Begin Form frmAbout
BackColor = &H00C0C0C0&
BorderStyle = 1 'Fixed Single
Caption = "About Version Browser"
ClientHeight = 3105
ClientLeft = 3510
ClientTop = 2685
ClientWidth = 3825
Height = 3570
Icon = ABOUT.FRX:0000
Left = 3420
LinkTopic = "Form1"
ScaleHeight = 3105
ScaleWidth = 3825
Top = 2310
Width = 4005
Begin CommandButton cbOK
Caption = "OK"
Height = 375
Left = 2880
TabIndex = 1
Top = 2640
Width = 735
End
Begin PictureBox pbWinMag
Height = 855
Left = 120
Picture = ABOUT.FRX:0302
ScaleHeight = 825
ScaleWidth = 2865
TabIndex = 0
Top = 120
Width = 2895
End
Begin Label Label3
BackStyle = 0 'Transparent
Caption = "Written by Karen Kenworthy"
Height = 255
Left = 120
TabIndex = 4
Top = 2760
Width = 2535
End
Begin Label Label4
BackStyle = 0 'Transparent
Caption = "Described in December, 1993; January 1994 and February 1994 ""Power Windows"" columns."
Height = 615
Left = 120
TabIndex = 5
Top = 2040
Width = 3135
End
Begin Label Label2
BackStyle = 0 'Transparent
Caption = "Copyright 1993-4 WINDOWS Magazine"
Height = 255
Left = 120
TabIndex = 3
Top = 1680
Width = 3495
End
Begin Label Label1
BackStyle = 0 'Transparent
Caption = "Version Browser 1.2"
FontBold = -1 'True
FontItalic = 0 'False
FontName = "MS Sans Serif"
FontSize = 18
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 375
Left = 120
TabIndex = 2
Top = 1080
Width = 3615
End
End
Sub cbOK_Click ()
Unload frmAbout
End Sub
Sub Form_Load ()
' center the About box on the screen
frmAbout.Left = (Screen.Width / 2) - (frmAbout.ScaleWidth / 2)
frmAbout.Top = (Screen.Height / 2) - (frmAbout.ScaleHeight / 2)
End Sub