Hello,

Here's my problem.
Depending on an option chosen by the user, another text box should be filled with data that is coming from a text file.

I know you can do something with a select case or an if then, but if I do that, I will have to adapt the code in a lot of different places.

So I was wondering, if something like this possible:
if opt1 then
textboxtouse = textbox1
else
textboxtouse = textbox 2
end if

Thanks in advance.