no one even looked at this is games and graphics:
in basic it is something like Plot Points, is there something like this to draw directly to the form?
Thanks :D
Printable View
no one even looked at this is games and graphics:
in basic it is something like Plot Points, is there something like this to draw directly to the form?
Thanks :D
in a way, there is by going to the component window, going to the insertable objects tab, and picks he ms paint control, or a drawing control, then you draw in the control, and press play and there it is, what you just drawn
no i mean like in runtime. When i hold the mouse down, it will draw.........kinda like that....
oh, I dont know that
Is this what your trying to do Steve?
Code:Public A, B As Integer
Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Button = 1 Then Me.Line (A, B)-(X, Y)
A = X: B = Y
End Sub
Private Sub Form_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Button = 1 Then Me.Line (X, Y)-(X + 15, Y + 15)
End Sub
Perfect. Thanks! :D