X
PrevPrev Go to previous topic
NextNext Go to next topic
Last Post 12 Jan 2010 02:41 PM by  anon
Making an array from a function
 2 Replies
Sort:
You are not authorized to post a reply.
Author Messages

anon



New Member


Posts:
New Member


--
12 Jan 2010 02:41 PM
    Greetings,   I am trying to write a function  which creates an array.  While I have determined that the function actually does create the array within the function itself, it does not create the array externally.  Thus, I only receive a value of '0' from running function.  What am I doing wrong?   Sincerely, Guy Serbin

    Deleted User



    New Member


    Posts:4
    New Member


    --
    12 Jan 2010 08:07 PM
    Dear Guy Serbin, Every IDL function you make can return array. Every type of array can be made in your function and the array can be sent outside of the function by return procedure(usually at the end of the function). So, I'd like to suggest you to check the array in the function. It might be helpful to set breaking point on the 'return, array' in the function and check the array value.  

    Deleted User



    New Member


    Posts:
    New Member


    --
    14 Jan 2010 03:49 PM
    Thank you, that worked!
    You are not authorized to post a reply.