Ads 468x60px

Smaller time frame always follow the bigger time frame. It's better wait be patience to enter in position than risk with BIG SL. Having strong trading discipline and taking losses when necessary is a sign of serious trading approach
Subscribe:

Labels

Saturday, August 11, 2012

SEARCH FOR HELP


Looking for a way to open your application's help file to it's search window? All you have to do is pass the name (and the path) of your help file and the string you want to search for to the following HelpSearch() function:


procedure HelpSearch(
  sHelpFName,
  sSearchKey : string );
var
  pc : PChar;
begin
  Application.HelpFile := sHelpFName;
  pc := StrAlloc(
          Length( sSearchKey ) + 1 );
  StrPCopy( pc, sSearchKey );
  Application.HelpCommand(
    HELP_PARTIALKEY, LongInt( pc ) );
  StrDispose( pc );
end;
For example:
HelpSearch( 'DELPHI.HLP', 'colors' );
If you just want to open the "search" window without specifying a search string:
HelpSearch( 'DELPHI.HLP', '' );

comments