Skip to content

Commit

Permalink
Merge pull request #12 from PhrotonX/feature
Browse files Browse the repository at this point in the history
v0.1.0.7 alpha - build 269
  • Loading branch information
PhrotonX authored Jul 4, 2021
2 parents 5db8a72 + 09821a3 commit b09d09f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,12 @@ INT_PTR DlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
}
case ID_HELP:
{
ShellExecute(NULL, "open", "helpFile.chm", NULL, NULL, 0);
ShellExecute(NULL, "open", "helpFile.chm", NULL, NULL, SW_SHOWNORMAL);
break;
}
case ID_SAVE_INFO:
{
MessageBox(hwnd, "Coming on v0.1.0.8 alpha", "Coming Soon", MB_OK | MB_ICONINFORMATION);
break;
}
case ID_ABOUT:
Expand Down
2 changes: 1 addition & 1 deletion main.rc
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ FONT 8, "Ms Shell Dlg"
{
GROUPBOX "About", 0, 7, 7, 115, 66, 0, WS_EX_LEFT
LTEXT "Developed by: Phroton", 0, 12, 57, 74, 9, SS_LEFT, WS_EX_LEFT
LTEXT "Version 0.1.0.7 alpha build 265", 0, 12, 27, 105, 30, SS_LEFT, WS_EX_LEFT
LTEXT "Version 0.1.0.7 alpha build 269", 0, 12, 27, 105, 30, SS_LEFT, WS_EX_LEFT
PUSHBUTTON "Update", ID_ABOUT_UPDATE, 129, 24, 50, 14, 0, WS_EX_LEFT
PUSHBUTTON "View Repo", ID_ABOUT_VIEW_REPO, 130, 42, 49, 14, 0, WS_EX_LEFT
LTEXT "UUID Generator", 0, 12, 17, 52, 9, SS_LEFT, WS_EX_LEFT
Expand Down

0 comments on commit b09d09f

Please sign in to comment.