home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 November
/
pcwk_11_98a.iso
/
Wtestowe
/
SOFTSRC
/
vtrial15.exe
/
DATA.1
/
AboutBox.frm
< prev
next >
Wrap
Text File
|
1997-03-20
|
3KB
|
117 lines
VERSION 4.00
Begin VB.Form AboutBox
BorderStyle = 3 'Fixed Dialog
ClientHeight = 2280
ClientLeft = 4485
ClientTop = 2265
ClientWidth = 5715
ControlBox = 0 'False
Height = 2685
Left = 4425
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2280
ScaleWidth = 5715
ShowInTaskbar = 0 'False
Top = 1920
Width = 5835
Begin VB.CommandButton OKCmd
Caption = "OK"
Height = 375
Left = 2400
TabIndex = 1
Top = 1800
Width = 1095
End
Begin VB.PictureBox Picture1
AutoSize = -1 'True
Height = 510
Left = 240
Picture = "AboutBox.frx":0000
ScaleHeight = 480
ScaleWidth = 480
TabIndex = 0
Top = 360
Width = 510
End
Begin VB.Frame Frame1
ForeColor = &H00FF0000&
Height = 975
Left = 960
TabIndex = 3
Top = 120
Width = 4575
Begin VB.Label Label2
Alignment = 2 'Center
Caption = "Version 1.0"
Height = 255
Left = 120
TabIndex = 5
Top = 600
Width = 4335
End
Begin VB.Label Label1
Alignment = 2 'Center
Appearance = 0 'Flat
BackColor = &H80000005&
BackStyle = 0 'Transparent
Caption = "The LineTyper"
BeginProperty Font
name = "MS Sans Serif"
charset = 0
weight = 700
size = 18
underline = 0 'False
italic = 0 'False
strikethrough = 0 'False
EndProperty
ForeColor = &H80000008&
Height = 495
Left = 120
TabIndex = 4
Top = 120
Width = 4335
End
End
Begin VB.Label Label3
Alignment = 2 'Center
Caption = "Copyright (c) 1996, 1997 by SoftSource, Bellingham, Wa."
Height = 255
Left = 240
TabIndex = 2
Top = 1320
Width = 5295
End
End
Attribute VB_Name = "AboutBox"
Attribute VB_Creatable = False
Attribute VB_Exposed = False
Option Explicit
Private Sub Form_Load()
'
' about box
'
WindowOnTop hWnd
Covered% = True
AboutBox.Left = (Screen.Width - AboutBox.Width) / 2
AboutBox.Top = (Screen.Height - AboutBox.Height) / 2
Label1.Caption = AppName$
End Sub
Private Sub OKCmd_Click()
'
' about box is done
'
Covered = False
Unload AboutBox
End Sub