Hi everybody, I have a question about referencing to a control on a form. I think I might be trying something that cannot be done, here is my problem:

I have a variable: Dim Formulaire as Form
and another: Dim Champ as Field

I want to assign a value to a textbox (Champ.name) which is on my form (Formulaire).
In other words, I would like the following to work: Formulaire."Champ.Name".value = "Hello"

Of course this is not a good syntax.

Can anyone help ?