home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Programmer'…arterly (Limited Edition) / Visual_Basic_Programmers_Journal_VB-CD_Quarterly_Limited_Edition_1995.iso / code / ch26code / excelwbk.frm (.txt) < prev    next >
Visual Basic Form  |  1995-06-26  |  1KB  |  46 lines

  1. VERSION 4.00
  2. Begin VB.Form frmExcelWbk 
  3.    BackColor       =   &H00FFFFFF&
  4.    Caption         =   "Excel 5.0 Worksheet Control Test"
  5.    ClientHeight    =   4275
  6.    ClientLeft      =   1095
  7.    ClientTop       =   1515
  8.    ClientWidth     =   6585
  9.    Height          =   4680
  10.    Icon            =   "EXCELWBK.frx":0000
  11.    Left            =   1035
  12.    LinkTopic       =   "Form1"
  13.    MaxButton       =   0   'False
  14.    ScaleHeight     =   4275
  15.    ScaleWidth      =   6585
  16.    Top             =   1170
  17.    Width           =   6705
  18.    Begin VB.CommandButton Command1 
  19.       Caption         =   "Close Excel Object"
  20.       Height          =   375
  21.       Left            =   90
  22.       TabIndex        =   0
  23.       Top             =   3555
  24.       Width           =   6405
  25.    End
  26.    Begin ExcelCtl.Sheet Sheet1 
  27.       Height          =   2610
  28.       Left            =   495
  29.       OleObjectBlob   =   "EXCELWBK.frx":030A
  30.       TabIndex        =   1
  31.       Top             =   360
  32.       Width           =   5790
  33.    End
  34.    Begin VB.Menu mnu 
  35.       Caption         =   "x"
  36.       Visible         =   0   'False
  37.    End
  38. Attribute VB_Name = "frmExcelWbk"
  39. Attribute VB_Creatable = False
  40. Attribute VB_Exposed = False
  41. Option Explicit
  42. Private Sub Form_Load()
  43.     BackColor = vb3DFace
  44.     Move (Screen.Width - Width) / 2, (Screen.Height - Height) / 2
  45. End Sub
  46.