home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form ChartForm
- Appearance = 0 'Flat
- BackColor = &H00C0C0C0&
- Caption = "First Impression Chart"
- ClientHeight = 3570
- ClientLeft = 5610
- ClientTop = 2775
- ClientWidth = 3870
- 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 = 4035
- Icon = "FirstImp.frx":0000
- Left = 5520
- LinkTopic = "Form1"
- MDIChild = -1 'True
- ScaleHeight = 3570
- ScaleWidth = 3870
- Top = 2400
- Width = 4050
- Begin VCIFiLib.VtChart VtChart1
- Height = 3555
- Left = 0
- TabIndex = 0
- Top = 0
- Width = 3855
- _version = 65536
- _extentx = 6800
- _extenty = 6271
- _stockprops = 96
- filename = "FirstImp.frx":030A
- End
- Attribute VB_Name = "ChartForm"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Form_Load()
- Top = 0
- Left = 0
- Width = MDIForm1.ScaleWidth
- Height = MDIForm1.ScaleHeight
- VtChart1.ChartType = VtChChartType2dBar
- MDIForm1.mnuChart2DBar.Checked = True
- End Sub
- Private Sub Form_Resize()
- VtChart1.Repaint = False
- VtChart1.Top = 50
- VtChart1.Left = 50
- VtChart1.Width = ScaleWidth - 100
- VtChart1.Height = ScaleHeight - 100
- VtChart1.Repaint = True
- End Sub
-