monkeyboy58
Technical User
I get compile errors when I attempt to pass a string array to a procedure...
Error C114 Line 258: Illegal initializer expression
Error C122 Line 258: Subscript on non-array
Here is the call:
ReTryAccess(NoAcc[], ArrayCt) ; pass array NoAcc[] and number items placed in array
Here is Line 258:
param string NoAcc[10] ; Passed string Array
The goal is to dial 40+ sites, place sites with errors into the array (avg less then 10 errored sites) then pass the array and count of sites placed in array to subproc to redial the sites at a later time.
Error C114 Line 258: Illegal initializer expression
Error C122 Line 258: Subscript on non-array
Here is the call:
ReTryAccess(NoAcc[], ArrayCt) ; pass array NoAcc[] and number items placed in array
Here is Line 258:
param string NoAcc[10] ; Passed string Array
The goal is to dial 40+ sites, place sites with errors into the array (avg less then 10 errored sites) then pass the array and count of sites placed in array to subproc to redial the sites at a later time.