Grid Data Binding

Fully implemented BCGControlBar Pro (MFC)

Fully implemented BCGSuite (MFC)

Fully implemented BCGControlBar for .NET

The grid control provides simple and flexible support for data binding.  There are three out of the box data provider specific grid classes:

  • ODBC
  • ADO
  • DAO (32 bit only)

Flexible interface allows integration of the Grid control with any data provider. Please take a look at BCGPDBGridDemo to see this feature in action.

In Grid for .NET version we also provide the following features:

  • Ability to assign one data storage to several grids
  • Events allowing to synchronize grids working with the same data

Sample code:

CBCGPADOGridCtrl m_wndGrid;

// Create grid control:
m_wndGrid.Create (WS_CHILD | WS_VISIBLE, rect, this, ID_DB_GRID);

// Open MS Access file:
m_wndGrid.OpenMSAccessFile (_T("c:\\db\\users.mdb"));

// Open table:
m_wndGrid.OpenTable (_T("phones"));