Is there an easier/shorter way to do this?
I want the next text box to appear when the first one is filled up. But doing this for like 10 text boxes will create a big mess.
I want the next text box to appear when the first one is filled up. But doing this for like 10 text boxes will create a big mess.
Use a procedure; in the procedure, just use the set TextBox.ReadOnly and Visible properties (Any Component properties).
I don't want all the text box to be visible at the same time. I only want the next text box to be visible when the first one isn't empty.
Could you explain what happens with "request focus"?
It simply moves the focus to the next
textbox, otherwise the focus may stay with the previous one.
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.