home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form fDataBox
- BackColor = &H00C0C0C0&
- Height = 3195
- Left = 4125
- LinkTopic = "Form1"
- MDIChild = -1 'True
- ScaleHeight = 2790
- ScaleWidth = 3645
- Top = 2370
- Width = 3765
- Begin ListBox cData
- Height = 2370
- Left = 45
- TabIndex = 0
- Top = 45
- Width = 3495
- End
- Option Explicit
- Sub cData_KeyPress (KeyAscii As Integer)
- If KeyAscii = 27 Then Unload Me
- End Sub
- Sub Form_Load ()
- Height = 2700
- Width = 3000
- End Sub
- Sub Form_Resize ()
- 'resize the list box
- cData.Width = Me.Width - 240
- cData.Height = Me.Height - 570
- End Sub
-