datagridview cells
-
I have a datagridview which allows users to enter new values for each column. But what I would really like is to prevent the user to add value to other columns if column MSISDN is still empty. which means, user must FIRST add MSISDN value before filling up the rest. Is there anyway where I can prevent the cursor or prevent setting focus to cell before anything else. THANKs!!!!
-
I have a datagridview which allows users to enter new values for each column. But what I would really like is to prevent the user to add value to other columns if column MSISDN is still empty. which means, user must FIRST add MSISDN value before filling up the rest. Is there anyway where I can prevent the cursor or prevent setting focus to cell before anything else. THANKs!!!!
-
simply use "CellValidating" event for other columns. in this event check whether if your MSISDN column is empty then set cancel to true.