home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form About
- BackColor = &H00000080&
- BorderStyle = 1 'Fixed Single
- Caption = "About"
- ClientHeight = 2895
- ClientLeft = 3690
- ClientTop = 1890
- ClientWidth = 5760
- Height = 3300
- Left = 3630
- LinkMode = 1 'Source
- LinkTopic = "Form2"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 2895
- ScaleWidth = 5760
- Top = 1545
- Width = 5880
- Begin PictureBox EXITABOUT
- BackColor = &H000000FF&
- Height = 1000
- Left = 0
- ScaleHeight = 975
- ScaleWidth = 975
- TabIndex = 7
- Top = 0
- Width = 1000
- End
- Begin ListBox List1
- Height = 2520
- Left = 240
- TabIndex = 6
- Top = 2280
- Visible = 0 'False
- Width = 5292
- End
- Begin CommandButton MOREBUTTON
- Caption = "More..."
- Height = 495
- Left = 2160
- TabIndex = 0
- Top = 2160
- Width = 1455
- End
- Begin PictureBox Picture2
- AutoSize = -1 'True
- Enabled = 0 'False
- Height = 510
- Left = 4836
- Picture = ABOUT.FRX:0000
- ScaleHeight = 480
- ScaleWidth = 480
- TabIndex = 2
- Top = 876
- Width = 510
- End
- Begin PictureBox Picture1
- AutoSize = -1 'True
- Enabled = 0 'False
- Height = 510
- Left = 408
- Picture = ABOUT.FRX:0302
- ScaleHeight = 480
- ScaleWidth = 480
- TabIndex = 1
- Top = 876
- Width = 510
- End
- Begin PictureBox Mh3d1
- BackColor = &H000000FF&
- Height = 1000
- Left = 0
- ScaleHeight = 975
- ScaleWidth = 975
- TabIndex = 3
- Top = 0
- Width = 1000
- Begin PictureBox Mh3d3
- BackColor = &H000000FF&
- Height = 1000
- Left = 0
- ScaleHeight = 975
- ScaleWidth = 975
- TabIndex = 5
- Top = 0
- Width = 1000
- End
- Begin PictureBox Mh3d2
- BackColor = &H000000FF&
- Height = 1000
- Left = 0
- ScaleHeight = 975
- ScaleWidth = 975
- TabIndex = 4
- Top = 0
- Width = 1000
- End
- End
- DefInt A-Z
- Sub EXITABOUT_Click ()
- Unload ABOUT
- End Sub
- Sub MOREBUTTON_Click ()
- MOREBUTTON.VISIBLE = 0
- LIST1.VISIBLE = -1
- EXITABOUT.VISIBLE = -1
- ABOUT.HEIGHT = 6150
- Open "MMREADME.TXT" For Input As #1
- Do While Not EOF(1)
- Line Input #1, ITEM$
- LIST1.AddItem " " + ITEM$
- Loop
- Close
- End Sub
-