private void helpButton_Click(object sender, EventArgs e) { FormInstructions infoBox = new FormInstructions(LocRM.GetString("imageConfigInstructions", currentCulture)); try { infoBox.Show(); } catch (Exception ex) { MessageBox.Show(ex.Message); } }
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 techInfoButto_ToolStrip_Click(object sender, EventArgs e) { FormInstructions infoBox = new FormInstructions(TECHTEXT); 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, (Global.testFilesPath + INSTRUCTIONSFILENAME)); try { infoBox.Show(); } catch (Exception ex) { MessageBox.Show(ex.Message); } }