09-24-2010 02:34 PM
Hi everyone,
I'm trying to insert 2 data from string control into an array. I was done to insert 1 data from string control into an array but when I try to add 1 string control, it not works. Could you guys assist me?
Thank you
Solved! Go to Solution.
09-24-2010 02:55 PM
You need to understand data flow.
You write both String and String 2 to the same location in Array 2 and then you update the Value of Array 2 twice with the different entries???? Watch it run with Execution Highlighting (the Light bulb) On.
What are you really trying to do? Can you show an example of what the result should look like?
Lynn
09-24-2010 03:00 PM - edited 09-24-2010 03:01 PM
I think this is what is wanted...to append data to an array. Only issue is it's a control not an indicator so this example may need a little modification if the user needs a control. If you don't want the user to enter anything, this method should work. The function used is insert into array
09-24-2010 03:05 PM
Actually I know it won't work, but I have no idea how to do it so I just plug all the wire together (newbie).
What I'm trying to do is when I press the OK button, those 2 strings will be store at array. Just like saving username and password into tiny database.
09-24-2010 03:07 PM
@Papang wrote:
Actually I know it won't work, but I have no idea how to do it so I just plug all the wire together (newbie).
What I'm trying to do is when I press the OK button, those 2 strings will be store at array. Just like saving username and password into tiny database.
Then use my solution; that should suffice. In the mean time check out these tutorials
09-24-2010 03:37 PM
Wow for(imstuck), It's work.
Thank you very much..
And also thank's for the link, it's really helpful.