-
FlexPro
- At a Glance
- Features & Options
- Applications
- All Advantages
- What’s New in FlexPro 2021
- Try FlexPro For Free
- FlexPro View OEM Freeware
- Buying Guide
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
- Products
- News
- Support
- Company
- Contact
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
Home > Community > Automation and VBA > Using multiple custom functions > Reply To: Using multiple custom functions
February 5, 2016 at 9:38 am
#9424
Bernhard 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