Need Help In Delphi 6

LitoLito Join Date: 2003-09-04 Member: 20560Members
Anyone proficient in Delphi 6 programming language, please help me.

I have created a Windows Help File for a game i'm working on, but i have NO idea how to get it to open up when I goto help> game Help.

Any input is appreciated, thanks.

Comments

  • Speed_2_DaveSpeed_2_Dave Join Date: 2002-11-15 Member: 8788Members
    I don't mean to be non-useful... but I tried coding in (I think delphi 5) it's a PASCAL clone, right?
  • SoulSkorpionSoulSkorpion Join Date: 2002-04-12 Member: 423Members
    <!--QuoteBegin-Speed 2 Dave+May 14 2004, 12:20 PM--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td><b>QUOTE</b> (Speed 2 Dave @ May 14 2004, 12:20 PM)</td></tr><tr><td id='QUOTE'><!--QuoteEBegin--> I don't mean to be non-useful... but I tried coding in (I think delphi 5) it's a PASCAL clone, right? <!--QuoteEnd--> </td></tr></table><div class='postcolor'> <!--QuoteEEnd-->
    Not exactly. It's an Object-Oriented version of Pascal with various changes and improvements. Oh, and "Pascal" isn't an acronym; it's named after the inventor of one of the world's first calculating devices.
  • artojartoj Join Date: 2004-04-26 Member: 28211Members
    First you need to set the Help file path like this:

    Application.HelpFile := 'C:\help.hlp';


    Then just call it like this:

    Application.HelpCommand(HELP_FINDER, 0);
  • LitoLito Join Date: 2003-09-04 Member: 20560Members
    thanks for the help :o. works perfectly
Sign In or Register to comment.