DataGrid Validation

  • Thread starter Thread starter Ann Marinas
  • Start date Start date
A

Ann Marinas

Hi all!

I'm currently using a datagrid in my application. I was wondering if you
guys have some information on cell-to-cell data validation and restriction,
if available.

Thanks a million!

-A
 
IF you bind to a Strongly Typed Dataset, it will validate for you in that it
won't let you add a type that doesn't fit...if you do, it will simply undo
it and reset the original value whenever you move out of the cell.
CurrentCellChanged may do what you want though...
 
Back
Top