A
an
Hello!
In MainForm I have a combo box.
Through of the code OnOpen MainForm < Me![SubF_NameForQuadr].Visible =
False>, show us that a subform, only after click in combo.
When the SubForm open, appear right away the empty text boxes.
I would like to show the text box only if it will have data in records
clicked in combo.
If don't have data in records selected in combo, the text boxes don't appear.
How is possible to do this, please?
I tried
If [MyField] Is Empty Then
[MyField].Visible = False
Else
....
....
But don't work.
Thanks in advance.
an
In MainForm I have a combo box.
Through of the code OnOpen MainForm < Me![SubF_NameForQuadr].Visible =
False>, show us that a subform, only after click in combo.
When the SubForm open, appear right away the empty text boxes.
I would like to show the text box only if it will have data in records
clicked in combo.
If don't have data in records selected in combo, the text boxes don't appear.
How is possible to do this, please?
I tried
If [MyField] Is Empty Then
[MyField].Visible = False
Else
....
....
But don't work.
Thanks in advance.
an