Accueil > Community > Automation and VBA > Using multiple custom functions > Reply To: Using multiple custom functions

#9424
Bernhard KantzBernhard Kantz
Participant

If you remove the numbers after Calculate in the Implements directive and the function definition, your code should work.


Option Explicit
 
Implements ICustomFPScriptFunctionCalculate
 
Private Function ICustomFPScriptFunctionCalculate_Calculate(SafeArrayOfArguments() As Variant)
 
	ICustomFPScriptFunctionCalculate_Calculate = SafeArrayOfArguments()
 
End Function