S
Stuart Grant
I have a database with one main form which has 9 text boxes and two combos
which list the details of each record as you step through them in a list box
with a list of all the last names. I also have command buttons for Add New
Record, Delete Record, Print and Quit.
The code for the AddNew Record button is
Private Sub AddNew_Click()
DoCmd.GotoRecord , , acNewRec
.......
.......
End Sub
It used to work but now when I click the boxes all go blank. I can select
an item from the first combo but when I tab to a text box, I cannot enter
anything. The text boxes are not locked but none of them will allow me to
enter anything. What can be wrong ?
I did not have navigation buttons in the form but have tried adding them.
Same problem.
Stuart
which list the details of each record as you step through them in a list box
with a list of all the last names. I also have command buttons for Add New
Record, Delete Record, Print and Quit.
The code for the AddNew Record button is
Private Sub AddNew_Click()
DoCmd.GotoRecord , , acNewRec
.......
.......
End Sub
It used to work but now when I click the boxes all go blank. I can select
an item from the first combo but when I tab to a text box, I cannot enter
anything. The text boxes are not locked but none of them will allow me to
enter anything. What can be wrong ?
I did not have navigation buttons in the form but have tried adding them.
Same problem.
Stuart