06-10-2005 05:08 AM
06-10-2005 08:42 AM
06-12-2005 11:15 PM
06-12-2005 11:20 PM
06-13-2005 09:19 AM
If Not graphsCreated Then
numPlots = CWGraph1.Plots.Count
CWGraph1.Visible = Not CWGraph1.Visible
For i = 0 To numPlots
graphName = "MyGraph" + LTrim(CStr(i))
Form1.Controls.Add "CWUIControlsLib.CWGraph.1", graphName
With Form1.Controls(graphName)
.Visible = True
.Top = CWGraph1.Top + i * (CWGraph1.Height / 3#)
.Width = CWGraph1.Width
.Height = CWGraph1.Height / 3#
.Caption = "Dynamic Graph Control" + CStr(i)
End With
Next i
graphsCreated = True
End If