Data Entry in a Form pt. 3

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

Guest

I wasn't clear about what I was looking for before.

Is it possible to have an empty box on my form that I can enter new
information into my call log table multiple times. (so that it is empty every
time I bring up the same form for a client)

thanks for your help
 
Hi

I have only worked on one call logger so I may be way out - - - but.

I remember that seeing the persons previous calls was important. Would you
not be better have a main form for the client and a call log on a sub form
(either datasheet or continous)

This way you can always add more details of the new call but also see what
you have done/said before

If you really don't want to see the person you are talking to's last calls
then just make the sub form data entry = yes (or as I said in the last answer
to you - just use OnLoad
DoCmd.GoToRecord , , acNewRec
 
Back
Top