0
我在VBA的用戶窗體中有一個組合框,並希望將用戶選擇變爲變量。 IE瀏覽器,我有一個值爲1-50的組合框,並希望獲取他們選擇的數字並將其用作變量。謝謝。VBA - 將組合框(用戶表單)中的使用值分配給變量
我在VBA的用戶窗體中有一個組合框,並希望將用戶選擇變爲變量。 IE瀏覽器,我有一個值爲1-50的組合框,並希望獲取他們選擇的數字並將其用作變量。謝謝。VBA - 將組合框(用戶表單)中的使用值分配給變量
你可以;
Dim str as String
''always available, what was selected or typed into the box:
str = TheComboBox.Text
msgbox "drop down text: " & str
''for drop-downs, always returns the text of an item:
if (TheComboBox.ListIndex > -1) then
''something is selected;
str = TheComboBox.List(ComboBox1.ListIndex)
msgbox "drop down value: " & str
end if