带有 MSFlexgrid 的 MS Access 表
如何在 VB6 中的单个 MSFlexgrid 控件中显示两个表?
How can one display two tables in a single MSFlexgrid control in VB6?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 VB6 中的单个 MSFlexgrid 控件中显示两个表?
How can one display two tables in a single MSFlexgrid control in VB6?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
您可以向弹性网格添加任何内容。
您唯一需要做的就是
这会向 FlexGrid 添加一个新行。现在您必须将信息添加到每个单元格。对于每个单元格,设置
信息,然后将信息添加到单元格中:
因此,您必须迭代表并将数据添加到 flexGrid 中。
You can add anything to the flexgrid.
The only thing that you have to do is
This adds a new row to the FlexGrid. Now you have to add the information to each cell. For each cell, set
and then add the information to the cell with:
So, you have to iterate through your tables and add your data to the flexGrid.