Skip to content

Commit

Permalink
Missing help button on import trips
Browse files Browse the repository at this point in the history
  • Loading branch information
philipbaileynar committed Feb 8, 2024
1 parent d7e2350 commit 6fbdecb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 3 additions & 2 deletions SandbarWorkbench/Trips/frmImportTrip.Designer.cs

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

5 changes: 5 additions & 0 deletions SandbarWorkbench/Trips/frmImportTrip.cs
Original file line number Diff line number Diff line change
Expand Up @@ -237,5 +237,10 @@ static int GetFieldIndex(string[] headers, string fieldName)
throw new ArgumentException(String.Format("Cannot find the column called '{0}'.", fieldName));
return idx;
}

private void cmdHelp_Click(object sender, EventArgs e)
{
Helpers.OnlineHelp.FormHelp(this.Name);
}
}
}

0 comments on commit 6fbdecb

Please sign in to comment.