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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Help With MS Access 4
Separate Form 0
form headers 2
Main form with two sub forms 1
filtering a form based on the values of a subform 0
Opening form unexpectedly closes other form 0
cant type in form 6
Access Form Refresh 1

Back
Top