开发者

MS Access Tables with MSFlexgrid

开发者 https://www.devze.com 2022-12-23 18:12 出处:网络
How can one display two tables in a 开发者_如何学运维single MSFlexgrid control in VB6?You can add anything to the flexgrid.

How can one display two tables in a 开发者_如何学运维single MSFlexgrid control in VB6?


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号