Good Afternoon, 
I have been trying to figure this out for days. I have a search form in Access 2007 that is unbound with unbound text boxes. The submit button works great, but I am trying to creat a clear button so that the user can clear out their information at once instead of each individual field. My form name is SearchingForm and the text boxes are clientname, operatingstate, product. I have tried the following codes:
	also tried 
	Any help would be appreciated.  I have not used Access or VB in years, so I am trying to relearn for work.  Thanks
							
						
					I have been trying to figure this out for days. I have a search form in Access 2007 that is unbound with unbound text boxes. The submit button works great, but I am trying to creat a clear button so that the user can clear out their information at once instead of each individual field. My form name is SearchingForm and the text boxes are clientname, operatingstate, product. I have tried the following codes:
Code:
	Private Sub resetbtn_Click() Me.Refresh End Sub
Code:
	Private Sub resetbtn_Click() Me.clientname = "" Me.operatingstate = "" Me.product = "" Me.Refresh End Sub
 
	 
	
Comment