home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1996 February
/
PCWK0296.iso
/
po7_win
/
object10
/
grapha.frm
< prev
next >
Wrap
Text File
|
1994-11-10
|
1KB
|
51 lines
VERSION 2.00
Begin Form frmGraphA
Caption = "Form1"
ClientHeight = 3720
ClientLeft = 1230
ClientTop = 2205
ClientWidth = 8370
Height = 4125
Left = 1170
LinkTopic = "Form1"
ScaleHeight = 3720
ScaleWidth = 8370
Top = 1860
Width = 8490
Begin GRAPH Graph1
AsciiExtra = "0"
AutoInc = 0 'Off
Height = 3495
Left = 120
TabIndex = 0
TabStop = 0 'False
Top = 120
Width = 8115
End
End
Sub Form_Load ()
graph1.Height = frmGraphA.Height - 650
graph1.Width = frmGraphA.Width - 300
graph1.Left = 100
End Sub
Sub Form_Resize ()
If (frmGraphA.Height > 700) And (frmGraphA.Width > 350) Then
graph1.Height = frmGraphA.Height - 650
graph1.Width = frmGraphA.Width - 300
graph1.Left = 100
End If
End Sub
Sub Graph1_DblClick ()
Unload frmGraphA
End Sub