i've never done any graphics before....
I'm trying to make the screen black and draw a red circle (about half the size of the screen) in the middle of the screen.
thanks in advance!
Printable View
i've never done any graphics before....
I'm trying to make the screen black and draw a red circle (about half the size of the screen) in the middle of the screen.
thanks in advance!
There is the simplest way to do this:
VB Code:
Form1.Cls Form1.BackColor = RGB(0,0,0) Form1.Circle (X,Y), RADIUS, COLOR
Put instead of X Y RADIUS and COLOR the right values.
Hope this what you wanted,
Arie.
is there a way i can make the circle half red, half blue?