Skip to content

Commit

Permalink
Merge pull request #225 from farmerbriantee/Development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
farmerbriantee authored Nov 8, 2021
2 parents cc91f94 + ef3752f commit ee0c12c
Show file tree
Hide file tree
Showing 4 changed files with 82 additions and 9 deletions.
80 changes: 76 additions & 4 deletions SourceCode/GPS/Forms/FormSaveAs.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions SourceCode/GPS/Forms/FormSaveAs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ private void btnSave_Click(object sender, EventArgs e)
mf.currentFieldDirectory = tboxFieldName.Text.Trim() + " ";

//date
mf.currentFieldDirectory += " " + DateTime.Now.ToString("MMM.dd", CultureInfo.InvariantCulture);
mf.currentFieldDirectory += " " + DateTime.Now.ToString("HH_mm", CultureInfo.InvariantCulture);
if (cboxAddDate.Checked) mf.currentFieldDirectory += " " + DateTime.Now.ToString("MMM.dd", CultureInfo.InvariantCulture);
if (cboxAddTime.Checked) mf.currentFieldDirectory += " " + DateTime.Now.ToString("HH_mm", CultureInfo.InvariantCulture);

//get the directory and make sure it exists, create if not
string dirNewField = mf.fieldsDirectory + mf.currentFieldDirectory + "\\";
Expand Down
1 change: 1 addition & 0 deletions SourceCode/GPS/Forms/Pickers/FormFilePicker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ private void FormFilePicker_Load(object sender, EventArgs e)
}
}
}
else continue;

//grab the boundary area
filename = dir + "\\Boundary.txt";
Expand Down
6 changes: 3 additions & 3 deletions SourceCode/GPS/Forms/SaveOpen.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ee0c12c

Please sign in to comment.