-
how can i draw small little circle like how spaces is ?? randomly ?
-
What?
-
i want to draw little circle all over the form randomly and have them stay there and that like if you where in space ...
-
'Here ya go evil
Private Sub Form_Load()
Dim numLittleCircles As Integer
Dim small As Integer
Width = 12000
numLittleCircles = ScaleWidth
BackColor = vbBlack
WindowState = vbMaximized
AutoRedraw = True
Randomize
For i = 1 To numLittleCircles
ForeColor = QBColor(Rnd * 15) 'new random each i
x = (Rnd * numLittleCircles) 'x coordinate
y = (Rnd * numLittleCircles) 'y coordinate
small = Rnd * 100 'this is the radius
Circle (x, y), small
Next
End Sub
'Hope this helps
'Joey O
-
Evil
I can't wait for your Killer App:eek: to be unleashed into the world because your questions get more and more bizzare every day! ;):)