Change Form Color Automatic
"Change Form Color Automatic"
API Declarations
(Add timer to your form)
(Set timer interval to 1)
Rate Change Form Color Automatic
(2(2 Vote))
Private Sub Timer1_Timer()
If col > 255 Then
col = 1
Else
col = col + 1
End If
Form1.BackColor = RGB(col, 134, 121)
End Sub
Change Form Color Automatic Comments
No comments yet — be the first to post one!
Post a Comment