Questions tagged [paramarray]
50 questions
0
votes
2 answers
Excel VBA: Unlimited Range Inputs With Versatility (?)
Could someone help me create a function that will handle an unlimited number of diverse ranges? I have tried "Paramarray variables() as Variant" and "variable as Range" in my arguments list but neither of them provide the versatility that I am…

Elias
- 723
- 3
- 11
- 18
0
votes
2 answers
Invoke Oracle stored procedure with param input varying array from C#
I have a stored procedure in Oracle which receives an input parameter of type varchar2 varying array. The procedure works and if you invoke it from SQL, what I need is called from C#.
My script is this:
CREATE OR REPLACE PROCEDURE…

ronpy
- 262
- 1
- 13
0
votes
0 answers
How to pass Dynamic value via param in symfony 1.4 routing.yml
I want to display the external url like this:
www.abc.com/username
This page requires group_id, ticket_id, but i dont want to display these variables in external urls.
My routing.yml:
my_profile:
url: /:username
param: { module: profile,…

greeta
- 1
- 1
0
votes
1 answer
String to double array
I need to take this string:
Dim tmpTry As String = "10, 20, 30, 40, 50, 52, 20, 20, 10, 35, 3, 8, 47, 7, 2, 5, 55, 8, 0, 0, 6, 55, 0, 2, 12, 0, 0, 21, 14, 0, 3"
And convert it to a double array:
Dim arrNumOfVisits As Double() = New Double(tmpTry)…

StealthRT
- 10,108
- 40
- 183
- 342
-1
votes
3 answers
Passing arrays through ParamArray with user-defined functions
New to VBA. I'm having two issues with the following code for user defined functions. I can't figure out how to pass arrays through ParamArray.
1) The printed type from bool() is 8203 as it should be. But the printed type from test() is 8204, so…

kas
- 7
- 3