Main Form Not updateble, Subforms need to be updateable

J

JimS

I want my main form to be non-updateable, while the multiple subforms that
display child data should be updateable...How?
 
D

Douglas J. Steele

You might have to go and explicitly lock all of the controls on the main
form other than the subform controls.
 
J

John Vinson

I want my main form to be non-updateable, while the multiple subforms that
display child data should be updateable...How?

One way would be to base the mainform on a non-updateable query (e.g.
by setting its query type property to Snapshot).

John W. Vinson[MVP]
 
Top