Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 VB6 的一个 MSFlexgrid 控件中显示两个表格?
您可以向 flexgrid 添加任何内容。
你唯一需要做的就是
flexGrid.AddItem ""
这会在 FlexGrid 中添加一个新行。现在您必须将信息添加到每个单元格。对于每个单元格,设置
flexGrid.Row = row flexGrid.Col = col
然后将信息添加到单元格中:
flexGrid.Text = info
因此,您必须遍历表并将数据添加到 flexGrid。