11-27-2014, 12:53 PM
Hi
Is there any way of Calling a Function in Function Library when function is defined in an Action.
For Example
--------------------------------------------------------------------------
Action1
--------------------
--------------------------
Function Library
-------------------------
--------------------------------------------------------------------------
When i utilize above code it is giving me error as: Type mismatch: "A"
Thanks and Kind Regards,
Jitender
Is there any way of Calling a Function in Function Library when function is defined in an Action.
For Example
--------------------------------------------------------------------------
Action1
--------------------
Code:
Public Function A
MsgBox "You are in"
End Function
funcB("A")
Function Library
-------------------------
Code:
Public Function B(strArg)
Execute(strArg)
End Function
--------------------------------------------------------------------------
When i utilize above code it is giving me error as: Type mismatch: "A"
Thanks and Kind Regards,
Jitender