|
-
Aug 29th, 2000, 12:11 AM
#1
Thread Starter
Frenzied Member
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
-
Aug 29th, 2000, 12:16 AM
#2
Frenzied Member
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
NXSupport - Your one-stop source for computer help
-
Aug 29th, 2000, 12:23 AM
#3
Thread Starter
Frenzied Member
no i mean like in runtime. When i hold the mouse down, it will draw.........kinda like that....
-
Aug 29th, 2000, 12:24 AM
#4
Frenzied Member
-
Aug 29th, 2000, 01:27 AM
#5
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
-
Aug 29th, 2000, 02:21 AM
#6
Thread Starter
Frenzied Member
Perfect. Thanks!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|