如何在vb6中的listBox中显示excel文件
我尝试在 vb6 中显示 excel 文件,并尝试使用以下代码来显示它:
Private Sub Command1_Click()
Dim xlsApp As Excel.Application
Set xlsTemp = New Excel.Application
wbk = xlsTemp.Workbooks.Open = "C:\MANGO\Test.xls" 'xls file path
List1.AddItem (wbk) 'add data wbk
End Sub
但是,它返回了 449 错误,
所以,我应该做什么才能让它像魅力一样工作。 谢谢
i tried to display excel file in vb6, and i tried the following code to displaying it:
Private Sub Command1_Click()
Dim xlsApp As Excel.Application
Set xlsTemp = New Excel.Application
wbk = xlsTemp.Workbooks.Open = "C:\MANGO\Test.xls" 'xls file path
List1.AddItem (wbk) 'add data wbk
End Sub
but, it returned the 449 error
so, what should i do to make it work like a charm.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法将
Workbook 对象
添加到列表中,这是不一致的。您可以添加一个
String
,因此请尝试以下操作:使用 Workbook 对象的
Name
属性。顺便说一句,您可以自己使用 Excel 包含的帮助找到这一点:
AddItem
AddItem
期望Text
参数为String
You cannot add a
Workbook object
to a list, this is inconsistent.You can add a
String
so try something like:using the
Name
property of the Workbook object.Btw, you could have found this by yourself using Excel included help :
AddItem
AddItem
expected aString
for theText
argument