01-10-2013 11:50 PM
Thanks a lot.
But i'm looking how to change to under box not to the right box with the ENTER or RETURN key.
I want to fill the array but with the ENTER key fill next values to down.
Do you know something about this?
Regards
01-11-2013 07:33 AM
The main problem with what you want is that the array does not provide a way of setting the edit position. Assuming you have a 2D array like in the example, here are two options.
The easy way is to use a table. It has an EditPos property and you can use the Key Down? event to set that property to what you want. The main issue with a table is that it is a 2D array of strings, and you might not want strings.
I haven't tried the harder way, but it goes something like this: