I am creating a desktop application in vs 2008. Basically i have a datagridview with 14 columns. Depedning on your selection in drop downs etc determines if you will skip columns as you tab through.
I logically thought the best place to execute the code was in the 'cell leave' event, but I notice it creates a loop because as you set the currentcell to some other cell it fires the cell leave event again and loops.
The question i have is a) is there some code i need to write to ignore the cell leave event and b) if cell leave event is incorrect which event should i be using as I have tried a few like cell enter etc.
I have left in comments as i have tried these lines as well to get the code working.
Thanks in advance
Cromster
if ((gridview.CurrentCell.ColumnIndex == BenefitGrid.BEN_INIT_PAY_COL) &&
Bookmarks