Subversion Repositories Code-Repo

Compare Revisions

Ignore whitespace Rev 52 → Rev 53

/SWAT Office App/trunk/SWAT Office App/Reimage_USB_Drives.cs
80,7 → 80,7
}
else
{
MessageBox.Show("bootsect.exe is missing from the master image location");
MessageBox.Show("bootsect.exe is missing from the master image location","Error");
}
}
else
90,7 → 90,9
}
catch (Exception e)
{
MessageBox.Show(e.ToString());
//MessageBox.Show(e.ToString(), "Error");
DebugText.appendText(e.ToString());
MessageBox.Show("An error has occured. Please notify a supervisor to debug.", "Error");
}
}
private static void bwThread_DoWork(object sender, DoWorkEventArgs e)
213,7 → 215,9
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
//MessageBox.Show(e.ToString(), "Error");
DebugText.appendText(ex.ToString());
MessageBox.Show("An error has occured. Please notify a supervisor to debug.", "Error");
}
}
static void fileCopyThread32_DoWork(object sender, DoWorkEventArgs e)
328,7 → 332,9
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
//MessageBox.Show(e.ToString(), "Error");
DebugText.appendText(ex.ToString());
MessageBox.Show("An error has occured. Please notify a supervisor to debug.", "Error");
}
}
}