Vb程序设计随机显示颜色
- 格式:doc
- 大小:43.00 KB
- 文档页数:1
Vb程序设计随机显示颜色(红色、绿色、蓝色)
Private Sub Command1_Click()
Dim a, r, g, b As Integer
Randomize
a = Int(255 * Rnd + 100)
If Check1.Value = 1 Then
r = a
End If
If Check2.Value = 1 Then
g = a
End If
If Check3.Value = 1 Then
b = a
End If
Label1.BackColor = RGB(r, g, b)
End Sub
Private Sub Command2_Click()
End
End Sub
下图为运行图示