J
Justin
I have a form that is based on a query. The where clase uses contains
references to two unbound combo boxes on the form. The user selects values
from the combo boxes and presses the command button on the form to requery.
When done the user press a command button to close the form.
SELECT Field1, Field2, etc..
FROM MyTable
WHERE ((Field1 = Forms![MyForms]![Comb1]) AND (Field1 =
Forms![MyForms]![Comb1]));
The Command Button code on click is simply
Me.Refresh
Me.Requery
The Close Command Button
DoCmd.Close acForm, "MyForm",acSaveNo
A problem occurs when a user closes the form, but only for some users. An
Access screen displayes requesting values for the Combo boxes. To date I
have:
I have search my entire system looking of other references to theses and
have found none.
Assigned values to the Combo Boexes prior to closing the form.
Changed the name of the combo boxes. The scren still displayes but with the
new names.
I would appreciate any comments. If I can't find the cause is there a way
to trap this so the users never see it?
references to two unbound combo boxes on the form. The user selects values
from the combo boxes and presses the command button on the form to requery.
When done the user press a command button to close the form.
SELECT Field1, Field2, etc..
FROM MyTable
WHERE ((Field1 = Forms![MyForms]![Comb1]) AND (Field1 =
Forms![MyForms]![Comb1]));
The Command Button code on click is simply
Me.Refresh
Me.Requery
The Close Command Button
DoCmd.Close acForm, "MyForm",acSaveNo
A problem occurs when a user closes the form, but only for some users. An
Access screen displayes requesting values for the Combo boxes. To date I
have:
I have search my entire system looking of other references to theses and
have found none.
Assigned values to the Combo Boexes prior to closing the form.
Changed the name of the combo boxes. The scren still displayes but with the
new names.
I would appreciate any comments. If I can't find the cause is there a way
to trap this so the users never see it?