enable form Problem

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

Guest

on one of my forms I have a list box were records are displayed. When I
click on a record it brings up all its information on another existing form,
which was used to input its original data. What I would like to do is have
the form read only, only when it is selected form the list, not when it is
used as a data input form

Thanks..
 
In your On Click Event to open the form, there is a setting you can use
to make the form you are opening Read Only. The syntax looks like
this:

DoCmd.OpenForm "MyForm", acNormal, , , acFormReadOnly
 
Back
Top