VB中CLICK事件代码.

2025-01-29 07:09:10
推荐回答(3个)
回答1:

如果是固定的,就用随机的代码,如果不是固定的,就用随机生成代码。

回答2:

Private Sub form_load()
Label1.caption=0
End Sub

Private Sub form_click()
Label1.caption=val(label1.caption)+1
End Sub

回答3:

Dim i As Integer

Private Sub Form_Click()
Me.Label1.Caption = i
i = i + 1
End Sub