The popular setup background colors
The "popular" setup background colors
Rate The popular setup background colors
(1(1 Vote))
'Here we create a typical blue to black background
'Make Sure AutoRedraw is set to true, so the content won't disapear
Form1.AutoRedraw=True
'Calculates for how many it has to decrease the color value by each step
StepSize=255/Form1.height 'When the for loop will reach the end 255 will be decreased from the Blue value
'Draws Lines with diferent colors with the decreasing blue value
For I = 0 to Form1.height
Form1.Line (-1,I)-(form1.width+1,I),RGB(0,0,255-I*StepSize) 'Draw the line
Next I
End Sub
The popular setup background colors Comments
No comments yet — be the first to post one!
Post a Comment