Hello there,
I am using the following code to invoke a help file in html format when a user clicks BitBtn3. This will work fine if thw user clicks this FIRST before doing anything else BUT if the user does other stuff first and then tries to invoke the help file it DOES NOT work. WHY ??
void __fastcall TForm1::BitBtn3Click(TObject *Sender)
{
ShellExecute(NULL, "open", "HelpFile.htm", 0,0, SW_SHOWNORMAL);
}
THanks,
Steven Matthews
I am using the following code to invoke a help file in html format when a user clicks BitBtn3. This will work fine if thw user clicks this FIRST before doing anything else BUT if the user does other stuff first and then tries to invoke the help file it DOES NOT work. WHY ??
void __fastcall TForm1::BitBtn3Click(TObject *Sender)
{
ShellExecute(NULL, "open", "HelpFile.htm", 0,0, SW_SHOWNORMAL);
}
THanks,
Steven Matthews