|
-
Dec 18th, 2002, 01:05 AM
#1
Thread Starter
Addicted Member
Drawing circle??
I want to draw a circle on a Form in a step up way...it start smll and then expand graudally until it reach a certain size...
-
Dec 18th, 2002, 05:32 AM
#2
VB Code:
for i=startsize to endsize
Form1.Circle (XPosition+i,YPosition+i),i, vbred
'add something to slow down
next i
That code will print a circle on Form1 , Posion of the centre is XPosition,YPosition, Color is red. The radius will increase from
startsize to endsize.
You have to add something to slow down the for .. next loop
You're welcome to rate this post!
If your problem is solved, please use the Mark thread as resolved button
Wait, I'm too old to hurry!
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
|