Sure. For example, add a reference for cwui.ocx, drop a button on a form, and
add this code to the click event handler of the button:
Private Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim graph As AxCWUIControlsLib.AxCWGraph = New AxCWUIControlsLib.AxCWGraph()
graph.Location = New Point(50, 50)
Controls.Add(graph)
End Sub
This will dynamically create a graph and add it to the form.
- Elton