Read Only query

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

Guest

I want to display a query and have it be read only, no updates or adds.
 
Try changing it to a Distinct query, either by going into the query's
Properties when you've got it in Design View and setting the UniqueValues
property to True, or by going into its SQL View and change SELECT to SELECT
DISTINCT.
 
suggest you bind the query to a form, and set the form's RecordsetType to
Snapshot.

hth
 
This does work if UniqueValues is set to yes

Douglas J. Steele said:
Try changing it to a Distinct query, either by going into the query's
Properties when you've got it in Design View and setting the UniqueValues
property to True, or by going into its SQL View and change SELECT to SELECT
DISTINCT.
 

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

Back
Top