I have 3 textboxes linked to a database....you know evertime you load the form each textbox has each entry from whatever field it's linked to......how can I have those textboxes cleared every time I load the form???
Printable View
I have 3 textboxes linked to a database....you know evertime you load the form each textbox has each entry from whatever field it's linked to......how can I have those textboxes cleared every time I load the form???
Hi!
Sub Form_Load()
Text1.Text = ""
Text2.Text = ""
Text3.Text = ""
End Sub