Bruce,
I have a normal desktop app in which I added the NTWS as an in-process web server. This app has the "HTML Help Global Definitions" template added to allow the normal procedures to use a CHM help file. The "Enable HTML Help on Procedure" template is then added to all procedures in the app.
For NetTalk procedures, the template is also added but no code is generated - except for a NetWebBrowse procedure. It doesn't create the standard oHH variable, but in the "End of Procedure" embed point it adds this code:
IF ~oHH &= NULL
oHH.Kill()
DISPOSE( oHH )
END
Because the oHH variable is not declared, it doesn't compile. As a work-around I can manually add the oHH variable, but it would be nice of the NetWebBrowse won't generate this code.
Thys