home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Mother of All Windows Books
/
CD-MOM.iso
/
cd_mom
/
newsletr
/
vbz
/
vbz1-3
/
vbzabout.frm
< prev
next >
Wrap
Text File
|
1993-06-24
|
3KB
|
109 lines
VERSION 2.00
Begin Form frmAbout
BorderStyle = 3 'Fixed Double
Caption = "Form2"
Height = 2895
Left = 1605
LinkMode = 1 'Source
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2490
ScaleWidth = 5130
Top = 1845
Width = 5250
Begin CommandButton Command1
Caption = "Ok"
Height = 495
Left = 1920
TabIndex = 4
Top = 1920
Width = 1215
End
Begin PictureBox Picture1
AutoSize = -1 'True
BorderStyle = 0 'None
Height = 615
Left = 120
ScaleHeight = 615
ScaleWidth = 615
TabIndex = 0
Top = 120
Width = 615
End
Begin Label Label3
Alignment = 2 'Center
Caption = "VBZ: The Electronic Journal on Visual Basic"
FontBold = -1 'True
FontItalic = 0 'False
FontName = "MS Sans Serif"
FontSize = 9.75
FontStrikethru = 0 'False
FontUnderline = 0 'False
ForeColor = &H00000000&
Height = 495
Left = 1200
TabIndex = 3
Top = 1200
Width = 3255
End
Begin Label Label2
Alignment = 2 'Center
Caption = "Label1"
FontBold = -1 'True
FontItalic = 0 'False
FontName = "MS Sans Serif"
FontSize = 9.75
FontStrikethru = 0 'False
FontUnderline = 0 'False
ForeColor = &H00000000&
Height = 255
Left = 840
TabIndex = 2
Top = 720
Width = 4095
End
Begin Label Label1
Alignment = 2 'Center
Caption = "Label1"
FontBold = -1 'True
FontItalic = 0 'False
FontName = "MS Sans Serif"
FontSize = 18
FontStrikethru = 0 'False
FontUnderline = -1 'True
ForeColor = &H00000080&
Height = 375
Left = 840
TabIndex = 1
Top = 240
Width = 4095
End
End
DefInt A-Z
Declare Function GetSystemMenu Lib "User" (ByVal hwnd, ByVal bRevert)
Declare Sub RemoveMenu Lib "User" (ByVal hMenu, ByVal nPosition, ByVal wFlags)
Const MF_BYPOSITION = &H400
Sub Command1_Click ()
Unload frmAbout
End Sub
Sub Form_Load ()
HSysMenu = GetSystemMenu(hwnd, 0)
RemoveMenu HSysMenu, 8, MF_BYPOSITION
RemoveMenu HSysMenu, 7, MF_BYPOSITION
Picture1.Picture = Screen.ActiveForm.Icon
ProgInfo$ = Screen.ActiveForm.Tag
Ver = InStr(ProgInfo$, "V")
Program$ = Left$(ProgInfo$, Ver - 2)
Version$ = Mid$(ProgInfo$, Ver)
Caption = "About " + Program$ + "..."
Label1.Caption = Program$ + "!"
Label2.Caption = Version$
frmAbout.Show 1
End Sub