A quick question..I have a datagrid, when you select a particular field in the data grid it not obvious whcih field I'm in there is no cursor flashing in the field. Is there a way that I can control the size of my cursor within the fields?
Gerard
Printable View
A quick question..I have a datagrid, when you select a particular field in the data grid it not obvious whcih field I'm in there is no cursor flashing in the field. Is there a way that I can control the size of my cursor within the fields?
Gerard
Surely. It's called the "marquee" and you can set it from the DataGrid property pages or from code like this:
DataGrid1.MarqueeStyle = dbgHighlightCell
or if you prefer,
DataGrid1.MarqueeStyle = dbgSolidCellBorder
Thank you very much, It works a treat!!!
Gerard