home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 17 / CD_ASCQ_17_101194.iso / dos / prg / czlist / general.frm < prev    next >
Text File  |  1994-07-10  |  1KB  |  63 lines

  1. Version 1.00
  2. BEGIN Form frmGeneral
  3.     AutoRedraw   = 0
  4.     BackColor    = QBColor(7)
  5.     BorderStyle  = 0
  6.     Caption      = "General"
  7.     ControlBox   = -1
  8.     Enabled      = -1
  9.     ForeColor    = QBColor(0)
  10.     Height       = Char(7)
  11.     Left         = Char(10)
  12.     MaxButton    = -1
  13.     MinButton    = -1
  14.     MousePointer = 0
  15.     Tag          = ""
  16.     Top          = Char(7)
  17.     Visible      = -1
  18.     Width        = Char(64)
  19.     WindowState  = 0
  20.     BEGIN Frame Frame1
  21.         BackColor    = QBColor(7)
  22.         Caption      = ""
  23.         DragMode     = 0
  24.         Enabled      = -1
  25.         ForeColor    = QBColor(0)
  26.         Height       = Char(7)
  27.         Left         = Char(0)
  28.         MousePointer = 0
  29.         TabIndex     = 0
  30.         Tag          = ""
  31.         Top          = Char(0)
  32.         Visible      = -1
  33.         Width        = Char(64)
  34.         BEGIN Label Label1
  35.             Alignment    = 2
  36.             AutoSize     = 0
  37.             BackColor    = QBColor(7)
  38.             BorderStyle  = 2
  39.             Caption      = "Label1"
  40.             DragMode     = 0
  41.             Enabled      = -1
  42.             ForeColor    = QBColor(0)
  43.             Height       = Char(3)
  44.             Left         = Char(1)
  45.             MousePointer = 0
  46.             TabIndex     = 1
  47.             Tag          = ""
  48.             Top          = Char(1)
  49.             Visible      = -1
  50.             Width        = Char(60)
  51.         END
  52.     END
  53. END
  54. DEFINT A-Z
  55.  
  56. SUB Form_Load ()
  57.  
  58. Left = ((SCREEN.Width - Width) / 2)   ' Center form horizontally
  59. Top = ((SCREEN.Height - Height) / 2)  ' Center form vertically
  60.  
  61. END SUB
  62.  
  63.