在VB中,OptionButton是一種可供用戶選擇的控件,通常用于創建單選按鈕組。以下是使用OptionButton的步驟:
下面是一個簡單的示例代碼,演示了如何創建和使用OptionButton控件:
Private Sub OptionButton1_Click()
If OptionButton1.Value = True Then
MsgBox "Option 1被選中"
End If
End Sub
Private Sub OptionButton2_Click()
If OptionButton2.Value = True Then
MsgBox "Option 2被選中"
End If
End Sub
Private Sub OptionButton3_Click()
If OptionButton3.Value = True Then
MsgBox "Option 3被選中"
End If
End Sub
在上述示例中,我們創建了三個OptionButton控件,分別命名為OptionButton1、OptionButton2和OptionButton3。每個控件的Click事件處理程序中,使用條件語句判斷選項的值,然后顯示相應的消息框。
希望對你有所幫助!