Skip to main content

Problem:

MFCLBINP Error 402 when calling/invoking COBOL COM component created with the Interface Mapping Toolkit.

Resolution:

MFCLBINP Error 402 means "program/entry point not found". The program not found would be the one that the COM interface was built for, your subprogram that you used in the Interface Mapper. If your COBOL subprogram is a .DLL, you can place it in the same directory as the program that uses the COM interface to your subprogram, or you can append the PATH environment variable on the machine to where this .DLL resides. If your subprogram is an .int or .gnt module, you can specify it's location using the COBDIR environment variable.

Old KB# 4329