带有 MSFlexgrid 的 MS Access 表

发布于 2024-08-25 22:23:35 字数 40 浏览 8 评论 0原文

如何在 VB6 中的单个 MSFlexgrid 控件中显示两个表?

How can one display two tables in a single MSFlexgrid control in VB6?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

━╋う一瞬間旳綻放 2024-09-01 22:23:35

您可以向弹性网格添加任何内容。

您唯一需要做的就是

flexGrid.AddItem ""

这会向 FlexGrid 添加一个新行。现在您必须将信息添加到每个单元格。对于每个单元格,设置

flexGrid.Row = row
flexGrid.Col = col

信息,然后将信息添加到单元格中:

flexGrid.Text = info

因此,您必须迭代表并将数据添加到 flexGrid 中。

You can add anything to the flexgrid.

The only thing that you have to do is

flexGrid.AddItem ""

This adds a new row to the FlexGrid. Now you have to add the information to each cell. For each cell, set

flexGrid.Row = row
flexGrid.Col = col

and then add the information to the cell with:

flexGrid.Text = info

So, you have to iterate through your tables and add your data to the flexGrid.

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