Hey all,
I'm working with Access 2002. I'm working on an inherited access file and I'm trying to figure out how the text boxes work in order to try and fix a bug which occurs.
The situation is as follows:
Users have access to a Form which allows them to submit records. The records are created from the information put into the text boxes on this form when a Save button is clicked. When the New Record button is clicked the records are set to blank.
Currently, when one clicks on a text box it comes up with the data from the last entry. So if John put into the Name Text Box his name, when the next entry is created, click on the Name Text Box will bring up John.
The text box has nothing under it's default value, so I don't even know why this is happeneing.
Occasionally while working with the program users will have the text boxes cease to automatically call up the last entry, causing an increase in manual work. (It is the function of the program that someone with the same Name make several entries before someone new takes over and thus a new Name must be entered).
Does anyone know why this is occuring? Or why the text boxes are bringing up the last entries data?
Thanks in advance,
James
I found this code in the "On Click" command:
I'm working with Access 2002. I'm working on an inherited access file and I'm trying to figure out how the text boxes work in order to try and fix a bug which occurs.
The situation is as follows:
Users have access to a Form which allows them to submit records. The records are created from the information put into the text boxes on this form when a Save button is clicked. When the New Record button is clicked the records are set to blank.
Currently, when one clicks on a text box it comes up with the data from the last entry. So if John put into the Name Text Box his name, when the next entry is created, click on the Name Text Box will bring up John.
The text box has nothing under it's default value, so I don't even know why this is happeneing.
Occasionally while working with the program users will have the text boxes cease to automatically call up the last entry, causing an increase in manual work. (It is the function of the program that someone with the same Name make several entries before someone new takes over and thus a new Name must be entered).
Does anyone know why this is occuring? Or why the text boxes are bringing up the last entries data?
Thanks in advance,
James
I found this code in the "On Click" command:
Code:
Private Sub Employee_Name_Click() SendKeys "+^'", True End Sub
Comment