Clearing the contents of unbound cells

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have several unbound textboxes in my form. When I move forward to view
other records in my databases the contents of the cell that I typed before
remains in the next record. How can I clear the contents of unbound cells
without changing my "DataEntry" property to Yes?
 
if the data is highlited, then just run a macro that uses the SendKeys
command with the argument {BS} for backspace and that should clear it :]
 
Try using the Form_Current Event to set the values of the unbound TextBoxes
to Null.
 
How do I highlight each control on the form without manually pressing CTRL+
the control to highlight?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top