DoCmd.Quit

Signature
Wayne
Manchester, England.
> is there any way to get access to close all the open windows using
> VBA, without having to define all the open windows. many thanks michael
aaron.kempf@gmail.com - 20 Mar 2007 19:11 GMT
Dim frm as Form
For each frm in Forms
Docmd.Close
next frm
> DoCmd.Quit
>
[quoted text clipped - 6 lines]
>
> - Show quoted text -