This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DialogResult Result = MessageBox.Show("You have not set the work directory yet. Would you like to set the directory now?", "WORK DIRECTORY NOT SET", MessageBoxButtons.YesNo);
if (Result.Equals(DialogResult.Yes))
{
Properties.Settings.Default.WorkDir = Microsoft.VisualBasic.Interaction.InputBox("Please enter the directory you want.", "Work Directroy", "");
Properties.Settings.Default.Save();
}
else
{
MessageBox.Show("ERROR:\nNo work directory was found. Exiting.");
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters