I have a simple form mainfrom and datagridview. I am trying to validate the data as the user enters in the datagrid view. The first column is a Combobox when the user changes the value I want to check and see if the printer they are selecting is available.
and display a message telling them that printer is busy if it is busy. My problem is when the user changes the value the only event that fires is the CurrentCellDirtyChanged event. Someone asked me why I am using that event, my answer is none of the other
validating events are firing. I have dvgShift_Printers_CellValidating,dgvShift_Printers_CellValueChanged,
dgvShift_Printers_RowValidating. I understand the rowvalidating not firing until the row loses focus but why are the rest not firing?