Results 1 to 2 of 2

Thread: Drawing circle??

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Apr 2002
    Posts
    237

    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...

  2. #2
    I don't do your homework! opus's Avatar
    Join Date
    Jun 2000
    Location
    Good Old Europe
    Posts
    3,863
    VB Code:
    1. for i=startsize to endsize
    2.    Form1.Circle (XPosition+i,YPosition+i),i, vbred
    3.    'add something to slow down
    4. 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
  •  



Click Here to Expand Forum to Full Width