在填充組合框,我得到的錯誤填充組合框
「所需的運行時錯誤424對象」。
下面是我的代碼,我試圖在組合框中填充國家(範圍名稱爲國家)列表。
Sub Country()
Dim Count As Range
Dim ws As Worksheet
Set ws = Worksheets("sheet2")
For Each Count In ws.Range("countries")
With ComboBox1
.AddItem Count.Value
End With
Next Count
End Sub
請幫我解決我的錯誤。 在此先感謝
在這行是錯誤?這是一個用戶表單嗎? –
不,它不是一個用法。錯誤是在行「與ComboBox1 .AddItem Count.Value」 – ankit
代碼在哪裏?您只是引用ComboBox1,請嘗試在它所在的工作表上引用它。類似'With Sheets(1).OLEObjects(「ComboBox1」)。Object' or'Sheets(1).ComboBox1.List = Sheets(「countries」)。Range(「A2:A10」)。Value' –