home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmAbout
- BorderStyle = 1 'Fixed Single
- Caption = "About..."
- ClientHeight = 2040
- ClientLeft = 4380
- ClientTop = 3585
- ClientWidth = 4680
- ControlBox = 0 'False
- HelpContextID = 240
- Icon = "frmAbout.frx":0000
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 2040
- ScaleWidth = 4680
- StartUpPosition = 1 'CenterOwner
- Begin VB.CommandButton Command1
- Caption = "&Ok"
- Height = 375
- HelpContextID = 610
- Left = 1320
- TabIndex = 0
- Top = 1560
- WhatsThisHelpID = 610
- Width = 1935
- End
- Begin VB.Label Label4
- Caption = "Timer Key-Press Events.....The best way."
- Height = 255
- Left = 120
- TabIndex = 5
- Top = 840
- Width = 4455
- End
- Begin VB.Label Label3
- Caption = "WAV Play."
- Height = 255
- Left = 120
- TabIndex = 4
- Top = 600
- Width = 4455
- End
- Begin VB.Label Label2
- Caption = "MIDI Play."
- Height = 255
- Left = 120
- TabIndex = 3
- Top = 360
- Width = 4455
- End
- Begin VB.Label Label1
- Caption = "Bitmap-Block-Transfer."
- Height = 255
- Left = 120
- TabIndex = 2
- Top = 120
- Width = 4455
- End
- Begin VB.Label lblVERSION
- Caption = "Version Info"
- Height = 255
- Left = 120
- TabIndex = 1
- Top = 1200
- WhatsThisHelpID = 620
- Width = 2655
- End
- Attribute VB_Name = "frmAbout"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- 'Not much explanation is needed here.
- Private Sub Command1_Click()
- Unload Me
- End Sub
- Private Sub Form_Load()
- 'Display the APPs version in the label
- lblVERSION.Caption = _
- "Version: " & App.Major & "." & App.Minor & "." _
- & App.Revision
- End Sub
-