private void helpButton_Click(object sender, EventArgs e) { FormInstructions infoBox = new FormInstructions(instructionsText); try { infoBox.Show(); } catch (Exception ex) { MessageBox.Show(ex.Message); } }
private void viewHelpToolStripMenuItem_Click(object sender, EventArgs e) { FormInstructions infoBox = new FormInstructions(helpText); try { infoBox.Show(); } catch (Exception ex) { MessageBox.Show(ex.Message); } }
private void showInstructions() { FormInstructions infoBox = new FormInstructions(instructionsText, (testFilesPath + instructionsFileName)); try { infoBox.Show(); } catch (Exception ex) { MessageBox.Show(ex.Message); } }
private void techInfoButto_ToolStrip_Click(object sender, EventArgs e) { FormInstructions infoBox = new FormInstructions(techText); try { infoBox.Show(); } catch (Exception ex) { MessageBox.Show(ex.Message); } }
private void helpButton_Click(object sender, EventArgs e) { FormInstructions infoBox = new FormInstructions(instructionsText); infoBox.Show(); }