Hello
I have the form with two text boxes:
cmd - where I put text: "me!desc"
desc - where I put "result"
I'd like to run a code
MsgBox "This is: " & me!cmd
How to run the code to have messagebox with "This is: result" and not "This
is: me!desc"
Thank you for solving my problem
Best regards
where cmd = me!
Brendan Reynolds - 19 Oct 2005 11:28 GMT
MsgBox "This is: " & Me.Controls(Me.cmd.Value)

Signature
Brendan Reynolds
> Hello
>
[quoted text clipped - 13 lines]
> Best regards
> where cmd = me!