An generic Aboutbox source
Submitted By:
Unknown
Rating:
(Not rated) (
Rate It)
VERSION 4.00
Begin VB.Form frmMain
Caption = "Generic AboutBox"
ClientHeight = 2175
ClientLeft = 2070
ClientTop = 1605
ClientWidth = 3975
Height = 2580
Icon = "genabout.frx":0000
Left = 2010
LinkTopic = "Form1"
ScaleHeight = 2175
ScaleWidth = 3975
Top = 1260
Width = 4095
Begin VB.CommandButton cmdAbout
Caption = "&About"
Height = 375
Left = 240
TabIndex = 0
Top = 120
Width = 975
End
Begin VB.Label Label3
Caption = "MMC Software [[Email Removed]]"
Height = 195
Left = 300
TabIndex = 3
Top = 1860
Width = 3375
End
Begin VB.Label Label2
Caption = "Sample by David Warren CIS:72500,1406"
Height = 195
Left = 300
TabIndex = 2
Top = 1620
Width = 3375
End
Begin VB.Label Label1
Caption = "Using the values assigned in Make EXE Options, a single About Box form can be used for all your projects."
Height = 675
Left = 300
TabIndex = 1
Top = 600
Width = 3375
End
End
Attribute VB_Name = "frmMain"
Attribute VB_Creatable = False
Attribute VB_Exposed = False
'Generic About Box Sample
' for VB4
' by David Warren
' MMC Software
' E-Mail: [[Email Removed]]
' or [[Email Removed]]
' Visit our home page at http://www.ccnet.com/~davidw
'***********************************************
' CompuServe users can visit our section of the
' Windows Networking Forum!
' GO WINETA and look for us in Section 18
'***********************************************
Private Sub cmdAbout_Click()
frmAbout.Show vbModal
End Sub