In Access 2000 when a field is yes/no then what is shown is a "checkbox", is it possible to emulate that through MSHFlexGrid or MSFlexGrid without other controls?
Printable View
In Access 2000 when a field is yes/no then what is shown is a "checkbox", is it possible to emulate that through MSHFlexGrid or MSFlexGrid without other controls?
This will put a CHECK MARK character into a CELL...
We do that for "faking" a check box type of thing in a control...Code:flxPosting.Row = lngRow
flxPosting.Col = lngCol
flxPosting.CellFontName = "Wingdings"
flxPosting.TextMatrix(lngRow, lngCol) = Chr$(252)