trying to figure out,
I can set Default values for form bound and unbound control in Property Sheet.
but could i set it with VBA?
I tried to add a button on a form, running code to save the current value of specific control to default values,
	
	
	
		
when I change the form to design view and look in the property sheet, the default value  property changed to the new value.,
but when i close the form and reopen it - it gets back to the previous default value.
can any one explain?
 I can set Default values for form bound and unbound control in Property Sheet.
but could i set it with VBA?
I tried to add a button on a form, running code to save the current value of specific control to default values,
		Code:
	
	
	me.control.defaultvalue = me.control
	but when i close the form and reopen it - it gets back to the previous default value.
can any one explain?