home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 November
/
pcwk_11_98a.iso
/
Wtestowe
/
SOFTSRC
/
vtrial15.exe
/
DATA.1
/
About.frm
< prev
next >
Wrap
Text File
|
1997-03-20
|
3KB
|
95 lines
VERSION 4.00
Begin VB.Form AboutForm
Caption = "About..."
ClientHeight = 2430
ClientLeft = 6405
ClientTop = 6810
ClientWidth = 5070
Height = 2835
Left = 6345
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2430
ScaleWidth = 5070
Top = 6465
Width = 5190
Begin VB.CommandButton DoneCmd
Caption = "&Done"
Height = 375
Left = 1920
TabIndex = 3
Top = 1920
Width = 1335
End
Begin VB.PictureBox Picture1
AutoSize = -1 'True
Height = 510
Left = 360
Picture = "About.frx":0000
ScaleHeight = 480
ScaleWidth = 480
TabIndex = 0
Top = 120
Width = 510
End
Begin VB.Label Label2
Alignment = 2 'Center
Appearance = 0 'Flat
BackColor = &H80000005&
BackStyle = 0 'Transparent
Caption = "Sample add-on for Virtual Drafter Copyright (c) 1996,1997 by SoftSource, Bellingham, WA."
BeginProperty Font
name = "MS Sans Serif"
charset = 0
weight = 700
size = 12
underline = 0 'False
italic = 0 'False
strikethrough = 0 'False
EndProperty
ForeColor = &H80000008&
Height = 975
Left = 120
TabIndex = 2
Top = 840
Width = 4815
End
Begin VB.Label Label1
Alignment = 2 'Center
BorderStyle = 1 'Fixed Single
Caption = "The Zoomer"
BeginProperty Font
name = "MS Sans Serif"
charset = 0
weight = 400
size = 18
underline = 0 'False
italic = 0 'False
strikethrough = 0 'False
EndProperty
Height = 495
Left = 1200
TabIndex = 1
Top = 120
Width = 3495
End
End
Attribute VB_Name = "AboutForm"
Attribute VB_Creatable = False
Attribute VB_Exposed = False
Private Sub DoneCmd_Click()
Unload AboutForm
End Sub
Private Sub Form_Load()
WindowOnTop hWnd
AboutForm.Left = (Screen.Width - AboutForm.Width) / 2
AboutForm.Top = (Screen.Height - AboutForm.Height) / 2
End Sub