Setting up help for a Delphi app - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T23:29:16Zhttp://stackoverflow.com/feeds/question/658193http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/658193/setting-up-help-for-a-delphi-app5Setting up help for a Delphi appJosh Kelley2009-03-18T13:11:25Z2009-03-19T16:01:13Z
<p>What's the best way to set up help (specifically <a href="http://msdn.microsoft.com/en-us/library/ms670068%28VS.85%29.aspx" rel="nofollow">HTML Help</a>) for a Delphi application? I can see several options, all of which has disadvantages. Specifically:</p>
<ol>
<li>I could set HelpContext in the forms designer wherever appropriate, but then I'm stuck having to track numbers instead of symbolic constants.</li>
<li>I could set HelpContext programmatically. Then I can use symbolic constants, but I'd have more code to keep up with, and I couldn't easily check the text DFMs to see which forms still need help.</li>
<li>I could set HelpKeyword, but since that does a keyword lookup (like Application.HelpKeyword) rather than a topic jump (like Application.HelpJump), I'd have to make sure that each of my help pages has a unique, non-changing, top-level keyword; this seems like extra work. (And there are HelpKeyword-related VCL bugs like <a href="http://qc.codegear.com/wc/qcmain.aspx?d=31175" rel="nofollow">this</a> and <a href="http://qc.embarcadero.com/wc/qcmain.aspx?d=69784" rel="nofollow">this</a>.)</li>
<li>I could set HelpKeyword, set an Application.OnHelp handler to convert HelpKeyword requests to HelpJump requests so that I can assign help by topic ID instead of keyword lookup, and add code such as my own help viewer (based on <a href="http://www.helpscribble.com/delphi-bcb.html" rel="nofollow">HelpScribble's code</a>) that fixes the VCL bugs and lets HelpJump work with anchors. By this point, though, I feel like I'm working against the VCL rather than with it.</li>
</ol>
<p><strong>Which approach did you choose for your app?</strong></p>
http://stackoverflow.com/questions/658193/setting-up-help-for-a-delphi-app/658283#6582833Answer by Gamecat for Setting up help for a Delphi appGamecat2009-03-18T13:37:16Z2009-03-18T14:48:19Z<p>We use symbolic constants. Yes, it is a bit more work, but it pays off. Especially because some of our dialogs are dynamically built and sometimes require different help IDs.</p>
http://stackoverflow.com/questions/658193/setting-up-help-for-a-delphi-app/658340#6583401Answer by mj2008 for Setting up help for a Delphi appmj20082009-03-18T13:54:03Z2009-03-18T13:54:03Z<p>I create the help file, which gets the help topic ID, and then go around the forms and set their HelpContext values to them. Since the level of maintenance needed is very low - the form is unlikely to change help file context unless something major happens - this works just fine.</p>
http://stackoverflow.com/questions/658193/setting-up-help-for-a-delphi-app/658569#6585690Answer by Brian Frost for Setting up help for a Delphi appBrian Frost2009-03-18T14:44:06Z2009-03-18T14:44:06Z<p>We use Help&Manual - its a wonderful tool, outputting almost any format of stuff you could want, doc, rtf, html, pdf - all from the same source. It will even read in (or paste from rtf (eg MSWord). It uses topic ID's (strings) which I just keep a list of and I manually put each one into a form (or class) as it suits me. Sounds difficult but trust me you'll spend far longer hating the wrong authouring tool. I spent years finding it!
Brian</p>
http://stackoverflow.com/questions/658193/setting-up-help-for-a-delphi-app/660569#6605693Answer by lkessler for Setting up help for a Delphi applkessler2009-03-19T00:04:13Z2009-03-19T00:04:13Z<p>When I first started researching how to do this several years ago, I first got the "All About help files in Borland Delphi" tutorial from: <a href="http://www.ec-software.com/support_tutorials.html" rel="nofollow">http://www.ec-software.com/support_tutorials.html</a></p>
<p>In that document, the section "Preparing a help file for context sensitive help" (which in my version of the document starts on page 28). It describes a nice numbering scheme you can use to organize your numbers into sections, e.g. Starting with 100000 for your main form and continuing with 101000 or 110000 for each secondary form, etc. </p>
<p>But then I wanted to use descriptive string IDs instead of numbers for my Help topics. I started using THelpRouter, which is part of EC Software's free Help Suite at: <a href="http://www.ec-software.com/downloads_delphi.html" rel="nofollow">http://www.ec-software.com/downloads_delphi.html</a></p>
<p>But then I settled on a Help tool that supported string ID's directly for topics (I use Dr. Explain: <a href="http://www.drexplain.com/" rel="nofollow">http://www.drexplain.com/</a>) so now I simply use HelpJump, e.g.:</p>
<blockquote>
<p>Application.HelpJump('UGQuickStart');</p>
</blockquote>
<p>I hope that helps.</p>