private void regularExpressionHelpToolStripMenuItem_Click(object sender, EventArgs e) { // launch the ICU help string strCommandLine = Properties.Resources.RegexHelpProgram; StoryEditor.LaunchProgram(strCommandLine, null); }
private void RunFixupProgram() { string strRunPath = Path.Combine(StoryProjectData.GetRunningFolder, "FixupOneStoryFile.exe"); if (File.Exists(strRunPath)) { StoryEditor.LaunchProgram(strRunPath, null); } }