Pelumi Eluyera

Pelumi Eluyera

  • NA
  • 24
  • 8.5k

Object reference not set to an instance of an object.

Mar 28 2015 7:51 PM
I keep getting ObJect not an instance of an object error on the 4th line.
which is (_selecteedAppointmentRow = (DataSetNumber1.TBL_AppointmentsRow) row.Row;

Here is the whole code. 

 if (appointmentWithEngineer != null)
            {
                row = (System.Data.DataRowView)appointmentWithEngineer.DataItem;
               _selectedAppointmentRow = (DataSetNumber1.TBL_AppointmentsRow)row.Row;
                if (_selectedAppointmentRow == null)
                    MessageBox.Show("Appointment is null");
}
}


Any help will be appreciated.


Regards

Answers (2)