Skip to content
Snippets Groups Projects
Commit 14c80bbb authored by rswindell's avatar rswindell
Browse files

Added Help Menu Item.

parent 5be3032c
Branches
Tags
No related merge requests found
......@@ -1766,3 +1766,12 @@ void __fastcall TMainForm::UserListExecute(TObject *Sender)
}
//---------------------------------------------------------------------------
void __fastcall TMainForm::HelpIndexMenuItemClick(TObject *Sender)
{
char str[512];
sprintf(str,"start http://synchro.net/docs");
WinExec(str,SW_SHOWMINNOACTIVE);
}
//---------------------------------------------------------------------------
Source diff could not be displayed: it is too large. Options to address this: view the blob.
......@@ -197,6 +197,8 @@ __published: // IDE-managed Components
TMenuItem *ViewStatisticsLog1;
TAction *UserList;
TToolButton *UserListButton;
TMenuItem *HelpIndexMenuItem;
TMenuItem *N7;
void __fastcall FileExitMenuItemClick(TObject *Sender);
void __fastcall ViewToolbarMenuItemClick(TObject *Sender);
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
......@@ -246,6 +248,7 @@ __published: // IDE-managed Components
void __fastcall BBSLoginMenuItemClick(TObject *Sender);
void __fastcall ViewLogClick(TObject *Sender);
void __fastcall UserListExecute(TObject *Sender);
void __fastcall HelpIndexMenuItemClick(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TMainForm(TComponent* Owner);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment