home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 128 - Disc 1 / dpcs1098a.iso / Ocx / VCFIMP / VCIMPRES.Z / F1Book.FRM (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1995-11-01  |  1.6 KB  |  56 lines

  1. VERSION 4.00
  2. Begin VB.Form SheetForm 
  3.    Appearance      =   0  'Flat
  4.    BackColor       =   &H00C0C0C0&
  5.    Caption         =   "Formula One Spreadsheet"
  6.    ClientHeight    =   3645
  7.    ClientLeft      =   1230
  8.    ClientTop       =   2790
  9.    ClientWidth     =   4185
  10.    BeginProperty Font 
  11.       name            =   "MS Sans Serif"
  12.       charset         =   0
  13.       weight          =   700
  14.       size            =   8.25
  15.       underline       =   0   'False
  16.       italic          =   0   'False
  17.       strikethrough   =   0   'False
  18.    EndProperty
  19.    ForeColor       =   &H80000008&
  20.    Height          =   4110
  21.    Icon            =   "F1Book.frx":0000
  22.    Left            =   1140
  23.    LinkTopic       =   "Form1"
  24.    MDIChild        =   -1  'True
  25.    ScaleHeight     =   3645
  26.    ScaleWidth      =   4185
  27.    Top             =   2415
  28.    Width           =   4365
  29.    Begin VCIF1Lib.F1Book F1Book1 
  30.       Height          =   3615
  31.       Left            =   0
  32.       TabIndex        =   0
  33.       Top             =   0
  34.       Width           =   4155
  35.       _version        =   65536
  36.       _extentx        =   7329
  37.       _extenty        =   6376
  38.       _stockprops     =   96
  39.       borderstyle     =   1
  40.       appname         =   ""
  41.       filename        =   "F1Book.frx":044A
  42.    End
  43. Attribute VB_Name = "SheetForm"
  44. Attribute VB_Creatable = False
  45. Attribute VB_Exposed = False
  46. Private Sub Form_Load()
  47.    Top = 0
  48.    Left = 0
  49.    Width = MDIForm1.ScaleWidth
  50.    Height = MDIForm1.ScaleHeight
  51. End Sub
  52. Private Sub Form_Resize()
  53.    F1Book1.Width = ScaleWidth - F1Book1.Left
  54.    F1Book1.Height = ScaleHeight - F1Book1.Top
  55. End Sub
  56.