PDA

Click to See Complete Forum and Search --> : dataGrid-cursor


gerard
Sep 19th, 2000, 08:23 AM
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

P.S.W.
Sep 19th, 2000, 01:31 PM
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

gerard
Sep 19th, 2000, 05:22 PM
Thank you very much, It works a treat!!!

Gerard