Click here to Skip to main content
15,923,164 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i have create100 text box in windows and two another textbox for defining range of text box betwen data entered eneone help me code this function .
for Ex. i type range 5 to 10 than entry will be occour in 5th to 10 th text box only
Posted

1 solution

Hi,

Give textbox name like tbx1,tbx2,tbx3.... ; Lets say when user enter 6 in first textbox [name it as textboxentry1] then in text change event you can put code like

ctype(me.controls("tbx" & sender.text),textbox).text =sender.text
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900