how to draw 3 different graphics on same object?

how can i draw 3 different graphics on same graphic object? i have a x-y graphic and x=4 and x = 20 lines. how can i draw these two lines and the graphic on same objec (mschart or any other objects). i attached a picture, it could explain better what i mean
thanks in advance
[280 byte] By [sa_keles] at [2007-11-20 11:55:32]
# 1 Re: how to draw 3 different graphics on same object?
You'd have to draw one line at a time.
dglienna at 2007-11-9 19:31:56 >
# 2 Re: how to draw 3 different graphics on same object?
thanks for your reply dglienna
how can i draw a line on mschart object?
sa_keles at 2007-11-9 19:32:56 >
# 3 Re: how to draw 3 different graphics on same object?
You don't. Use a picturebox or any other container. Even the form itself.
They all work the same way.

Private Sub Form_Load
DrawWidth = 10 ' Set DrawWidth.
End Sub
Private Sub Form_Click ()
Static M As Integer ' Current DrawMode setting.
ForeColor = QBColor(Int(Rnd * 15)) ' Choose a color.
M = ((M + 1) Mod 16) + 1 ' Keep DrawMode 16 or less.
DrawMode = M ' Set DrawMode.
End Sub
Private Sub Form_MouseMove (Button As Integer, Shift As Integer, X As Single, Y As Single)
If Button Then ' While button is pressed,
PSet (X, Y) ' draw a big point.
End If
End Sub

Paste that into a new program and run it.
dglienna at 2007-11-9 19:33:58 >
# 4 Re: how to draw 3 different graphics on same object?
thanks. i am trying
sa_keles at 2007-11-9 19:34:52 >
# 5 Re: how to draw 3 different graphics on same object?
Click and draw all 16 types
dglienna at 2007-11-9 19:35:55 >