I have a Microsoft Access database where I'd like to be able to close the table datasheet view without it asking me if I want to save the layout. Is there a way to supress this dialog?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

In code:

  DoCmd.Close acTable, "MyTable", acSaveNo

There is no way to turn it off globally or for interactive use of the table.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.