Tuesday, 12 November 2019

HTML Help Workshop Error

HTML Help Workshop and Windows 10

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

Windows 10 – Right-Click Context Menu option is missing and Freeze/Hang

Recently, my Windows 10 has started freezing whenever open a file explorer and right-click on a PDF or image file. The context menu appears,...