CGXAdoGrid::CGXAdoGrid
CGXAdoGrid(CWnd* pGridWnd = NULL, CDocument* pGridDoc = NULL, BOOL bIsViewContext = FALSE);
pGridWnd
A pointer to the parent CWnd object for the CGXAdoGrid object.
pGridDoc
A pointer to the document, if any. Otherwise NULL.
bIsViewContextYou
hould pass TRUE for this parameter if the grid is used in a CView.
Remarks
Constructs a CGXAdoGrid object.
You will only need to call this constructor if you want to attach a CGXAdoGrid object to a CGXGridHandleView or CGXGridHandleWnd.
Example
This example shows you how you can attach a CGXAdoGrid (derived from CGXGridCore) to CGXGridHandleView:
void CMyGridView::OnInitialUpdate()
{
AttachGrid( new CGXAdoGrid(this, GetDocument(), TRUE) );
CGXGridHandleView::OnInitialUpdate();
...
}
See Also
CGXGridHandleView CGXGridHandleWnd