home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 January
/
Pcwk0198.iso
/
Wtestowe
/
Microgfx
/
FCTRIALL
/
ABC.Z
/
EXCELABO.FRM
< prev
next >
Wrap
Text File
|
1996-12-16
|
5KB
|
147 lines
VERSION 4.00
Begin VB.Form AboutForm
Appearance = 0 'Flat
BackColor = &H00C0C0C0&
BorderStyle = 3 'Fixed Dialog
Caption = "About Excel Data Sample"
ClientHeight = 5475
ClientLeft = 1845
ClientTop = 1725
ClientWidth = 3930
BeginProperty Font
name = "MS Sans Serif"
charset = 0
weight = 700
size = 8.25
underline = 0 'False
italic = 0 'False
strikethrough = 0 'False
EndProperty
ForeColor = &H80000008&
Height = 5880
Left = 1785
LinkTopic = "Form1"
ScaleHeight = 5475
ScaleWidth = 3930
Top = 1380
Width = 4050
Begin VB.CommandButton AboutOK
Appearance = 0 'Flat
BackColor = &H00C0C0C0&
Caption = "OK"
Height = 375
Left = 1320
TabIndex = 9
Top = 4920
Width = 1335
End
Begin VB.Label Label4
Appearance = 0 'Flat
BackColor = &H00C0C0C0&
Caption = "3) Choose which fields to use in ABC by selecting items in the Fields listbox."
ForeColor = &H80000008&
Height = 615
Left = 480
TabIndex = 3
Top = 3000
Width = 3135
End
Begin VB.Label Label9
Appearance = 0 'Flat
BackColor = &H00C0C0C0&
Caption = "4) Press ""Make Chart"" to draw a new chart in ABC with the Excel data."
ForeColor = &H80000008&
Height = 615
Left = 480
TabIndex = 8
Top = 3600
Width = 3135
End
Begin VB.Label Label8
Appearance = 0 'Flat
BackColor = &H00C0C0C0&
Caption = "2) Once a valid filename is entered the ""Read Data"" button will become enabled. Press button to read in Excel data."
ForeColor = &H80000008&
Height = 855
Left = 480
TabIndex = 7
Top = 2160
Width = 3135
End
Begin VB.Label Label7
Appearance = 0 'Flat
BackColor = &H00C0C0C0&
Caption = "1) Choose an Excel file to read by entering a filename in the ""Source Excel 5.0 Data File"" edit box."
ForeColor = &H80000008&
Height = 615
Left = 480
TabIndex = 6
Top = 1560
Width = 3015
End
Begin VB.Label Label6
Appearance = 0 'Flat
BackColor = &H00C0C0C0&
Caption = "Instructions:"
ForeColor = &H80000008&
Height = 255
Left = 360
TabIndex = 5
Top = 1320
Width = 1575
End
Begin VB.Label Label5
Appearance = 0 'Flat
BackColor = &H00C0C0C0&
Caption = "(c) Micrografx, Inc. 1996"
ForeColor = &H80000008&
Height = 255
Left = 840
TabIndex = 4
Top = 4560
Width = 2295
End
Begin VB.Label Label2
Appearance = 0 'Flat
BackColor = &H00C0C0C0&
Caption = "This sample reads data from an Excel spreadsheet using OLE Automation."
ForeColor = &H80000008&
Height = 495
Left = 360
TabIndex = 1
Top = 240
Width = 3495
End
Begin VB.Label Label1
Appearance = 0 'Flat
BackColor = &H00C0C0C0&
Caption = "by Terrell Cantrell"
ForeColor = &H80000008&
Height = 255
Left = 1080
TabIndex = 0
Top = 4320
Width = 1575
End
Begin VB.Label Label3
Appearance = 0 'Flat
BackColor = &H00C0C0C0&
Caption = "The first non-blank row in the spreadsheet is read in as field names."
ForeColor = &H80000008&
Height = 495
Left = 360
TabIndex = 2
Top = 720
Width = 3255
End
End
Attribute VB_Name = "AboutForm"
Attribute VB_Creatable = False
Attribute VB_Exposed = False
Private Sub AboutOK_Click()
Unload AboutForm
ExcelSample.Show
ExcelSample.Enabled = True
End Sub