home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l406 / 4.ddi / DATABOX.FR_ / DATABOX.bin (.txt)
Encoding:
Visual Basic Form  |  1992-10-21  |  795 b   |  32 lines

  1. VERSION 2.00
  2. Begin Form fDataBox 
  3.    BackColor       =   &H00C0C0C0&
  4.    Height          =   3195
  5.    Left            =   4125
  6.    LinkTopic       =   "Form1"
  7.    MDIChild        =   -1  'True
  8.    ScaleHeight     =   2790
  9.    ScaleWidth      =   3645
  10.    Top             =   2370
  11.    Width           =   3765
  12.    Begin ListBox cData 
  13.       Height          =   2370
  14.       Left            =   45
  15.       TabIndex        =   0
  16.       Top             =   45
  17.       Width           =   3495
  18.    End
  19. Option Explicit
  20. Sub cData_KeyPress (KeyAscii As Integer)
  21.   If KeyAscii = 27 Then Unload Me
  22. End Sub
  23. Sub Form_Load ()
  24.   Height = 2700
  25.   Width = 3000
  26. End Sub
  27. Sub Form_Resize ()
  28.   'resize the list box
  29.   cData.Width = Me.Width - 240
  30.   cData.Height = Me.Height - 570
  31. End Sub
  32.