Registering the help processing procedure

You must specify which procedure script will be used for the help processing procedure. Use the WinHelp_RegisterHelpProcedure() function from the WinHelp function library to do this. For applications that integrate with Microsoft Dynamics GP, you specify the help processing procedure in the Startup procedure script.

Be sure you use the WinHelp_RegisterHelpProcedure() function to specify the help processing procedure. If you don’t, your application won’t be able to process help.


The following is part of the Startup procedure for the sample integrating application:

l_result = WinHelp_RegisterHelpProcedure(script IG_Help_Processing);
if l_result <> 0 then
	error "An error occurred. Unable to register help processing  procedure.";
end if;


Documentation Feedback