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...
Printable View
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...
That code will print a circle on Form1 , Posion of the centre is XPosition,YPosition, Color is red. The radius will increase fromVB Code:
for i=startsize to endsize Form1.Circle (XPosition+i,YPosition+i),i, vbred 'add something to slow down next i
startsize to endsize.
You have to add something to slow down the for .. next loop