Excel与VB6.0
我是 VB 6.0 的新手,我正在尝试处理文本和 xls 文件并将结果放入 Excel 工作簿中。
请有人告诉我如何在 Excel 工作表中创建选项卡并将内容放入其中。
问候,
拉朱
I am new to VB 6.0 ,I am trying to process text and xls files and placing the result in to Excel workbook.
Could you please anyone tell me how to create tabs in Excel sheet and place the content in that.
Regards,
Raju
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以下是在 VBA 中创建新工作表的代码:
如果您需要操作工作表(重命名...),请参阅 此链接
Here is the code to create a new sheet in VBA:
If you need to manipulate the sheet (rename...), see this link
一种快速简单的方法是打开 Excel,记录宏并选择一个工作表并输入一些数据。一旦您从 VB 6 设置了对 Excel 的引用(或者您可以使用后期绑定和 createObject 函数),VB 6 代码将与录制的宏中的代码几乎相同。
A quick and easy way would be to open Excel, record a macro and select a sheet and enter some data. The VB 6 code will pretty much be the same code as in the recorded macro once You've set a reference to Excel from VB 6 (or you can use late binding and the createObject function).