Technologies: Visual Studio .NET 2008
I'm wondering if anyone is aware of a way to force a column in a datagridview to behave similarily to Excel.
Currently, this is what the data looks like:
A) 123456789.02211
what I would like to see is
B) 123,456,789.02
However, the catch is, I want the data to look like "B" when not in use (no focus, mouse isn't in cell) and I want the data to look like "A" when in use. (Cell has focus, not the whole column.)
If I can't do the specific cell, that's fine. If it's as broad as "When the dataGridview has focus, all data looks like A, I can deal with that.
Any ideas?