我按照这里的建议在 VBA 表单中显示 Excel 。
我需要在 VBA 表单内的 Excel中显示一个验证下拉列表,如下所示
我试过下面的代码。它显示编译错误。相同的代码适用于普通的 Excel 窗口。
With Me.Spreadsheet1.Range("A1").Validation
.Add Type:=xlValidateList, AlertStyle:=xlValidAlertStop, Operator:= _
xlBetween, Formula1:=ValidationList
.IgnoreBlank = True
.InCellDropdown = True
.InputTitle = ""
.ErrorTitle = ""
.InputMessage = ""
.ErrorMessage = ""
.ShowInput = True
.ShowError = True
End With
下面是错误。