Excel与VB6.0

发布于 2024-12-05 15:11:47 字数 122 浏览 1 评论 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

無處可尋 2024-12-12 15:11:47

以下是在 VBA 中创建新工作表的代码:

Dim oSheet As Worksheet Variant
Set oSheet = Worksheets.Add

如果您需要操作工作表(重命名...),请参阅 此链接

Here is the code to create a new sheet in VBA:

Dim oSheet As Worksheet Variant
Set oSheet = Worksheets.Add

If you need to manipulate the sheet (rename...), see this link

乖不如嘢 2024-12-12 15:11:47

一种快速简单的方法是打开 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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文