9
97T
Please excuse my ignorance.
In other high level languages I've played with, there were functions that
let you build commands or lines of code.
For instance, you could assemble a string variable, and convert it to a line
of code, then execute the line of code.
That would be one way to do what I want.
Something like (in English),
Set CommandVariable equal to String1 & String2 & String3
Execute CommandVariable
This would make it simple for me to step through an array and assign my
bytes to a series of sequentially numbered textboxes in a form. I could do
a loop and change the value of one part of it.
I've waded into the discussions about control arrays that don't work
anymore, and I got mired in quicksand.
Do I have to create classes and all that just to transfer information to
textboxes without having to type out each one by name in the code? I'd
rather use a for / next loop ......
This would be nice if it worked,
(I've placed some text boxes on my form and named them Txtbx0, Txtbx1, etc.)
For I = 0 to 4
Form1.Txtbx(I).Text = MyArray(I)
Next
Thanks for helping the newbie,
--NinerSevenTango--
In other high level languages I've played with, there were functions that
let you build commands or lines of code.
For instance, you could assemble a string variable, and convert it to a line
of code, then execute the line of code.
That would be one way to do what I want.
Something like (in English),
Set CommandVariable equal to String1 & String2 & String3
Execute CommandVariable
This would make it simple for me to step through an array and assign my
bytes to a series of sequentially numbered textboxes in a form. I could do
a loop and change the value of one part of it.
I've waded into the discussions about control arrays that don't work
anymore, and I got mired in quicksand.
Do I have to create classes and all that just to transfer information to
textboxes without having to type out each one by name in the code? I'd
rather use a for / next loop ......
This would be nice if it worked,

(I've placed some text boxes on my form and named them Txtbx0, Txtbx1, etc.)
For I = 0 to 4
Form1.Txtbx(I).Text = MyArray(I)
Next
Thanks for helping the newbie,
--NinerSevenTango--