Numbers on Blank Form

  • Thread starter Thread starter DCost
  • Start date Start date
D

DCost

There are 0 or $0 prefilled on blank form, to type I have
to go in an delete in each field then type. Is there
somewhere on the table or form that I can change to make
this run more smoothly? Thanks for all your help.
 
DCost,

The Default Value for the fields in the table underlying this form is
set to 0 which may or may not be what you want. If you go to the
design view of the table, and delete the 0 from the Default Value
property, this will be one possible solution. Another would be to use
a VBA procedure on the form control's Enter event to set the SelStart
and SelLength properties such that the contents of the control are
selected and therefore can be overwritten. In fact, I think you will
find that this happens anyway if you enter the control via using the
Tab key.

- Steve Schapel, Microsoft Access MVP
 
Back
Top