Preventing data from being changed after running a query

mkdrep

Registered User.
Local time
Today, 16:46
Joined
Feb 6, 2014
Messages
181
I have some queries that pull data from one table and other queries that pull data from two related tables. In both cases, how do I prevent the data from being changed after the queries results are displayed? I know I could make a form and lock each field so it couldn't be changed, but I was hoping to avoid having to do that.....

thank you.
 
Change the RecordSet Type of the query to Snapshot.
 
Change the RecordSet Type of the query to Snapshot.

Still new to this game.....where do I make this change? In the query itself?
thanks for the help....Mark
 
In the query itself is the answer :p

Open your query in design view.
Click anywhere in the QDE (Query Design Editor) EXCEPT the grid.
Open the properties box and RecordSet Type is the 10th property.
 
Personally I would not let users have access to Raw Queries. These should be put onto forms and use Read Only states Enabled and Locked Fields along with Allow Edits No Delete and No Add etc.

Simon
 
In the query itself is the answer :p

Open your query in design view.
Click anywhere in the QDE (Query Design Editor) EXCEPT the grid.
Open the properties box and RecordSet Type is the 10th property.

Worked like a charm! thank you very much :)
 
Personally I would not let users have access to Raw Queries. These should be put onto forms and use Read Only states Enabled and Locked Fields along with Allow Edits No Delete and No Add etc.

Simon

I appreciate the advice, Simon. I will keep that in mind..... :)
 

Users who are viewing this thread

Back
Top Bottom