Beispiel #1
0
        private void regularExpressionHelpToolStripMenuItem_Click(object sender, EventArgs e)
        {
            // launch the ICU help
            string strCommandLine = Properties.Resources.RegexHelpProgram;

            StoryEditor.LaunchProgram(strCommandLine, null);
        }
Beispiel #2
0
        private void RunFixupProgram()
        {
            string strRunPath = Path.Combine(StoryProjectData.GetRunningFolder, "FixupOneStoryFile.exe");

            if (File.Exists(strRunPath))
            {
                StoryEditor.LaunchProgram(strRunPath, null);
            }
        }