hey, i use the ec-software component, works fine for me.. here the code i use to create:
FbtHelp:=THelpRouter.Create(Self); FbtHelp.HelpType:=htHTMLhelp; FbtHelp.Helpfile:='myhelp.chm'; FbtHelpThis:=TWhatsThis.Create(Self); FbtHelpThis.Active:=False; FbtHelpThis.F1Action:=goContext; FbtHelpThis.Options:=[wtInheritFormContext, wtUseAppKey]; FbtHelpThis.OnF1KeyDown:=Self.btCallbackHelp; FbtHelpThis.Loaded; FbtHelpThis.Active:=True; two notes: -they've assumed the TWhatsThis comp get dropped on a form, and have stuff in the onloaded, hence my having to manually call .Loaded -i've assigned OnF1KeyDown to my own proc, for some extra figuring-out of what topic to display. hope that helps, ben --- "Donovan J. Edye" <[EMAIL PROTECTED]> wrote: > G'Day, > > 1. Help Router for HLP, CHM > > EC Software (http://www.ec-software.com/comppage.htm) has a THelpRouter > component that allows you to have HLP calls intercepted and sent to a CHM > file. However it does not appear to work for me. Being a bit short on time > at the moment can anyone recommend a freeware component that does the same > thing and that works? > __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ --------------------------------------------------------------------------- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED] Website: http://www.delphi.org.nz To UnSub, send email to: [EMAIL PROTECTED] with body of "unsubscribe delphi" Web Archive at: http://www.mail-archive.com/delphi%40delphi.org.nz/
