04-19-2012, 06:59 PM
Hi guys,
I am having tough time figuring out what's wrong with the function call. I have a function which i am calling and the moment it enters the function i get the err.number = 501.
I verified all the variables, all are string and it matches with the number of arguments defined in the function.
No clue why am I getting this.
this is my function call statement:
and this is how its been defined in the function lib:
Please let me know if you would need more information. Thanks in advance for your help!
I am having tough time figuring out what's wrong with the function call. I have a function which i am calling and the moment it enters the function i get the err.number = 501.
I verified all the variables, all are string and it matches with the number of arguments defined in the function.
No clue why am I getting this.
this is my function call statement:
Code:
Action_Result = fnAccountInfoPageOSA(iInitialDeposit, sFundAccFrom, sAccNickname, sChangeOwnerToJoint, sASPOption, sASPAmount, sASPAccFrom, sASPFreq, sASPStartDate)
and this is how its been defined in the function lib:
Code:
Function fnAccountInfoPageOSA(iInitialDeposit, sFundAccFrom, sAccNickname, sChangeOwnerToJoint, sASPOption, sASPAmount, sASPAccFrom, sASPFreq, sASPStartDate)
' code to be executed
End Function
Please let me know if you would need more information. Thanks in advance for your help!