|
-
Apr 14th, 2000, 09:22 AM
#1
Thread Starter
Junior Member
How do you make a dot on the spot you click on a picture? Like a red spot of blood for shooting games?
-
Apr 14th, 2000, 09:33 AM
#2
Hyperactive Member
try this:
Code:
Private Sub Pic_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
Pic.PSet (X, Y), vbRed '' this is too small you should use circle.
End Sub
-
Apr 14th, 2000, 10:58 PM
#3
Fanatic Member
Or...
This would make the the circle (with an 'X' in it for some
strange reason):
Code:
Private Sub Picture1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
Dim i As Integer
For i = 1 To 30 'Vary the 30 to change circle size
Picture1.Circle (X, Y), i, vbRed
Next:
End Sub
Hope it helps,
Me
[Edited by V(ery) Basic on 04-15-2000 at 05:00 AM]
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
|