function X exists in dummy1.prg.
function X exists in dummy2.prg.
dummy1.prg is built into test1.exe and dummy2.prg is built into test2.exe. test1.exe can call test2.exe. How can I make sure that when test1.exe calls test2.exe and test2.exe is using function X of dummy2.prg not the function X of dummy1.prg.
For example, in test2.exe, a form TESTFORM has this coding:
do X
If test2.exe is called from test1.exe, I want to make sure that TESTFORM will use the X of dummy2.prg.
Note: The "do X" coding cannot be changed since the source code for TESTFORM is not available.
Thank you for any suggestion.
function X exists in dummy2.prg.
dummy1.prg is built into test1.exe and dummy2.prg is built into test2.exe. test1.exe can call test2.exe. How can I make sure that when test1.exe calls test2.exe and test2.exe is using function X of dummy2.prg not the function X of dummy1.prg.
For example, in test2.exe, a form TESTFORM has this coding:
do X
If test2.exe is called from test1.exe, I want to make sure that TESTFORM will use the X of dummy2.prg.
Note: The "do X" coding cannot be changed since the source code for TESTFORM is not available.
Thank you for any suggestion.