Posted by: Jarmo Muukka
Hi,
I was coding a class and I gave name for the function which is logical. In
this function I need to call function in DLL, which also has a logical name,
which of course has the same name. So, how do I call global function with
the same name?
External Functions
Library name: xxxxx.dll
Function: CalculateSomething
Class Definitions
Functional Class: Order
Function: CalculateSomething
Actions
Call CalculateSomething( this.object, ... )
If there is no way, I need to give function an illogical name. In C++ I
could call ::CalculateSomething( ... )
JMu