1. Compiled error HHC6003
When run the HTML Help compiler gave an error code HHC6003.
From Google search the error code was referencing to file itcc.dll was not registered. To register the file, open the command prompt in administrator mode. Type the command below in the Dos prompt.
regsvr32 C:\Windows\System32\itcc.dll
2. Error saving project file .hhp
When trying to save a project, the following error message:
Cannot write to the file ""myfilename.hhp"".
This has something to do with the quotes. It is also the same problem when trying to compile the project with the 'Save all files before compiling' button enabled. The HTML Help put quotes around the file name as a result it became double quotation marks.
This is a registry glitch that cause the project path to be displayed in quotation marks in the compilation dialog box. To fix the problem in the registry, use regedit and find those hhp shell open command and delete the quotation marks in the project path.
Before "C:\Program Files\HTML Help Workshop\hhw.exe" "%1"
change to
After "C:\Program Files\HTML Help Workshop\hhw.exe" %1
Close and restart HTML Help Workshop again. This should do the trick.
No comments:
Post a Comment