I have a form that is binded to a data control,the thing is,each time I load this form the textboxes have values in them.
How can I ensure that when the form is loaded my controls don't show current records instead a blank record?
please help me
Printable View
I have a form that is binded to a data control,the thing is,each time I load this form the textboxes have values in them.
How can I ensure that when the form is loaded my controls don't show current records instead a blank record?
please help me
You can do that by ading a new record when the form is loaded:
Private Sub Form_Load()
Data1.Recordset.AddNew
End Sub