I read through all of the answers, tried all of them. None worked. What it ended up being is a tableadapter.fill method that was trying to violate constraints, I didnt have the error trapped. This was the first line in that procedure.
This is the orignal code and the first Fill method threw the exception, only it didnt throw it far enough to hit me in the head, it just dumped out of the PageLoad method and back to the calling program, which happened to be the menu system that opened the window. So no fault. But any breakpoint that I put in the procedure would be marked as "The breakpoint will not currently be hit....". After an hour of trying fixes I modified the Dataset to allow the one single stupid null that was in the 20,000 records that the table adapter was trying to pull.. No more problem.
private void newPageLoadEvent(object sender, EventArgs e)
{
this.tPMTaskListFetchTableAdapter.Fill(this.procedureEditor.TPMTaskListFetch);
taFill();
this.typeFetchTableAdapter.Fill(this.procedureEditor.TypeFetch);
this.equipmentModelFetchTableAdapter.Fill(this.procedureEditor.EquipmentModelFetch);
this.frequencyFetchTableAdapter.Fill(this.procedureEditor.FrequencyFetch);
this.tPMTaskAssemblyFetchTableAdapter.Fill(this.procedureEditor.TPMTaskAssemblyFetch, Convert.ToInt32(procedureListGV.Rows[0].Cells["idCol"].Value));
this.tPMPartsListFetchTableAdapter.Fill(this.procedureEditor.TPMPartsListFetch, Convert.ToInt32(tbCurrentProcedureID.Text));
taskListTreeFill();
initialPageFormat();
}