11-03-2010 04:51 PM
My question is more complex so i've simplified it, if anyone can show me how to do this I will be very grateful.
Please, tell me how to make a subVI to which i supply 1d string (data), a column number and a row beginning.
Similarly, how to make a subVI to which I supply a 1d string and a row number and a column beginning.
I don't need anyone to make this subvi for me but please hint at how i convert this information to a 2d string [row, column] data. I've been working on this for 2 days now.
If this was C, it would be done within minutes.
Solved! Go to Solution.
11-03-2010 05:06 PM - edited 11-03-2010 05:06 PM
@lebogzy wrote:
My question is more complex so i've simplified it, if anyone can show me how to do this I will be very grateful.
Please, tell me how to make a subVI to which i supply 1d string (data), a column number and a row beginning.
Similarly, how to make a subVI to which I supply a 1d string and a row number and a column beginning.
I don't need anyone to make this subvi for me but please hint at how i convert this information to a 2d string [row, column] data. I've been working on this for 2 days now.
If this was C, it would be done within minutes.
The most important contribution to a solution is proper formulation of the problem.
Your title mentions a table, but your post body does not.
Where is the table? On the front panel of the subVI or on the front panel of the toplevel VI?
A table is basically a 2D array of strings, so as a first step you should initialize a 2D string array of a reasonable size with all empty strings. Now you can fill columns or rows or elements, etc. with new data using "replace array subset".
Please attach what you have so we get a better idea what you are trying to do.
11-03-2010 07:25 PM
ok i'll play around with this. wriing to the table isnt a problem, I can create a property node and go. It's the structure of the writing section that I have confusion about.
11-03-2010 07:48 PM
yeah that was enough to help me. Thanks!