Find As U Type Question

D

dcrqueens

I am using the Find as U Type form by Allen Browne. In order to suppress
combo boxes it states that you add the following to the On load procedure

For example, to suppress filtering for Combo1 and Text99, set the form's On
Load property to:
=FindAsUTypeLoad([Form], "Combo1", "Text99")

The problem that I have is that there is already something else listed On
load procedure that s required t make the form work =FindAsUTypeLoad([Form]).
How do I add this additional information as well.

Any help would be greatly appreciated.

Diana
 
J

John W. Vinson

I am using the Find as U Type form by Allen Browne. In order to suppress
combo boxes it states that you add the following to the On load procedure

For example, to suppress filtering for Combo1 and Text99, set the form's On
Load property to:
=FindAsUTypeLoad([Form], "Combo1", "Text99")

The problem that I have is that there is already something else listed On
load procedure that s required t make the form work =FindAsUTypeLoad([Form]).
How do I add this additional information as well.

Any help would be greatly appreciated.

Diana

Open whatever routine you currently have in the Load event, and add

Call FindAsUTypeLoad(Me, "Combo1", "Text99")

as a line in the executable code.
 
D

dcrqueens

John than you so much this is exactly what I needed.

John W. Vinson said:
I am using the Find as U Type form by Allen Browne. In order to suppress
combo boxes it states that you add the following to the On load procedure

For example, to suppress filtering for Combo1 and Text99, set the form's On
Load property to:
=FindAsUTypeLoad([Form], "Combo1", "Text99")

The problem that I have is that there is already something else listed On
load procedure that s required t make the form work =FindAsUTypeLoad([Form]).
How do I add this additional information as well.

Any help would be greatly appreciated.

Diana

Open whatever routine you currently have in the Load event, and add

Call FindAsUTypeLoad(Me, "Combo1", "Text99")

as a line in the executable code.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top