Re: HtmlHelpController problem
[email protected] (Ron Grunwald via wxperl-users) Wed, 8 Mar 2017 07:06:05 +0800
| Newsgroups | perl.wxperl.users |
|---|---|
| Message-ID | <[email protected]> |
Hi Keith, What an interesting widget. Just out of curiosity, do you use the "HTML Help Workshop" software under Windows to create the html files? Its mentioned in the wxWidgets write-up for this control. Cheers, Ron. ________________________________________ Ron Grunwald [email protected] http://www.dvlcorner.org > On 2 Mar 2017, at 2:12 am, Keith Brown <[email protected]> wrote: > > Got it! I was "cleaning up" files and got rid of the hhp, hhc and hhk files. They're back and all is again fine. > > > Keith > > > On 03/01/2017 10:28 AM, Keith Brown wrote: >> Hi folks. >> >> I have an odd thing happening with my htmlhelpcontroller. I've been updating the html help files for my software project and yesterday everything was working fine. Today ... not fine. Opening the help window from my program shows nothing at all in the help window. I have only been working on the html files, not the perl code. What I do is edit the html files and then zip them up into a help file. The program then uses the zip file: >> >> sub Help { >> >> $window->{html_help}->AddBook( $ProgramPath."help.zip", $false ); >> $window->{html_help}->DisplayContents; >> >> } >> >> It seems to have something to do with the zip file since I can resurrect an old help.zip file from a previous version of the program and use it with no problems. >> >> Has anyone seen this before and if so, what is the "fix"? >> >> >> Keith