Thanks for the reply,
The works computer wont let me upload the file so I will upload it from home when I get back. The forms are two seperate bound forms. The "stoppages" form i have issues with is made up of a few raw data fields but it also pulls info from other tables such as stop type, shift and station number.
The "stoptype" combobox requeries a query that updates the ""problemdetail" combobox.
Although "stoptype" is on the form, the control is unbound and the data is simply used to run the query and is not saved into the table, will this be what is causing the issues?
this is my most recent attempt - excuse the ammature control names it's a very long time since I've used access and i'm well out of practice!
Code:
Me.Combo47.RowSource = ""
Me.Combo17.RowSource = ""
Me.stoptype.RowSource = ""
Me.Combo49.RowSource = ""
Combo47.Value = Null
Combo47.Requery
Combo49.Value = Null
Combo49.Requery
Combo17.Value = Null
Combo17.Requery
lengthofstop.Value = Null
stoptype.Value = Null
stoptype.Requery
Date.Value = Null
Time.Value = Null
DoCmd.Close
I want the close button to basically ensure anything the user has entered in the form is wiped when they click close. I dont mind if there are ways around it, for example clearing the fields then going back to that same record next time when the form is opened from the menu but I can't think how that could be done...
thanks for your help guys!