How to display blank fields in a form (1 Viewer)

Nick.NZ

New member
Local time
Tomorrow, 08:08
Joined
Nov 14, 2021
Messages
15
Hey guys,

I was wondering if there is a way to display blank fields in all the text boxes until a customer has been selected from the combo box?



1637908669935.png




At the moment, when you open the form it just defaults to the first customer.


Thanks,
Nick
 

arnelgp

..forever waiting... waiting for jellybean!
Local time
Tomorrow, 04:08
Joined
May 7, 2009
Messages
19,237
add Code to the Load Event of the form to goto New Record:

private sub form_load()
docmd.GoToRecord,,acNewRec
end sub
 

Nick.NZ

New member
Local time
Tomorrow, 08:08
Joined
Nov 14, 2021
Messages
15
add Code to the Load Event of the form to goto New Record:

private sub form_load()
docmd.GoToRecord,,acNewRec
end sub

Thank you sir,

that worked.
 

Users who are viewing this thread

Top Bottom