|
•
|
In file th_print.inc, the DDT callback function OptionProc() was incorrectly disabling/enabling controls as option buttons were pressed. In fact, this represented logic left over from a much earlier version of TinyHelp, and it served no purpose. Therefore, OptionProc() and references to it have simply been removed from this file. Note that this only affects TinyHelp applications developed for QHTM.dll, since printing isn't available for applications developed for the freeware equivalent, QHTMLight.dll.
If you have never edited your th_print.inc, simply replace your existing copy with the new one. If you have made changes to the original, take whatever steps you see fit to remove the behaviour that was provided in the original OptionProc().
|
|
|
|
|
•
|
Include files are now represented using relative paths, removing the need for you to migrate the supplied includes on installation. Minor changes have been made to TinyHelp.bas, TinyHelp.inc, and source code has been tagged with "[12.Dec.2001]" in the appropriate places. What this means is -
|
|
|
|
|
|
| •
|
If you are a new user, installation is a little simpler
|
| •
|
If you already have TinyHelp set up on your PC, there is no need to disturb your existing installation ; however if you want to use the new system of relative includes, follow the changes in these two files marked with "[12.Dec.2001]"
|
|
|
|
|
|
•
|
Line 8 in TinyHelp.inc previously contained the following line -
|
|
|
|
|
|
#compile exe "D:\Projects\Lynx\LynxHelp.exe" '[*] remove path for distribs
|
|
|
|
|
|
It should instead read just -
|
|
|
|
|
|
#compile exe
|
|
|
|
|
|
With the original line in place, you would get a compiler error 'Destination File Write Error'.
|
|
|
|
|
•
|
readme.txt is updated with information about problems that may occur if you are compiling with current API files from PowerBASIC, Inc.
|
|
|
|