Unable to modify bound fields in datasheet view

T

tsluu

i've assigned form.recordsource to retrieve data from several tables in sql
query. i was unable to edit any bound fields in datasheet view. it appeared
locked. however, when I run the same sql query in query design view, I can.
Any idea why?

any help would be appreciated.
 
S

Stuart McCall

tsluu said:
i've assigned form.recordsource to retrieve data from several tables in
sql
query. i was unable to edit any bound fields in datasheet view. it
appeared
locked. however, when I run the same sql query in query design view, I
can.
Any idea why?

any help would be appreciated.

Make sure the form's AllowEdits property is set to 'No'.
 
T

tina

i think Stuart meant to make sure the form's AllowEdits property is set to
Yes. also check the RecordsetType, and make sure it is *not* set to
Snapshot. and check to see if there is any code running in the form's Open,
Load or Current events that would disallow edits. and if you're opening the
form using code, make sure the calling code is not opening the form as
ReadOnly.

hth
 

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

Top