怎么用vb做一个抽奖小程序 在1-1000内随机抽取

2025-03-11 15:01:02
推荐回答(1个)
回答1:

Private Sub Command1_Click()
Label1 = ""
Label1 = 1 + Int(1000 * Rnd)

End Sub