Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

which grid is best to view access database in VB form?

Status
Not open for further replies.

VMRao

Programmer
Feb 14, 2003
12
US
I wanted to know which grid is best to view access database table ?and i'm using check boxes in my table for one field

Thanks in Advance
Malli.
 
The datagrid and the msflexgrid both do a good job and it is easy to set up if you bind the grids to a data control. However neither will display your checkbox field as a check box. I believe you will see it as a yes/no field (the words yes or no). Thanks and Good Luck!

zemp
 

Just to add:

A ListView control will show check boxes, and has many other nice properties, but it takes a bit more work to set up the data than the DataGrid.

As far as check boxes for the DataGrid and Flex grid, you can position a check box control array over each cell, but it takes a bit of work when repositioning. Better would be to format the column as True/False or Yes/No, and show a check box only when the user click on a cell.

The DataGrid does not have individual cell formating (Font and color) properties like the FlexGrid, but is handier with data input, and faster when loading larger amounts of data and can be fully bound to a data source.
[/b][/i][/u][sub]*******************************************************
General remarks:
If this post contains any suggestions for the use or distribution of code, components or files of any sort, it is still your responsibility to assure that you have the proper license and distribution rights to do so!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top