Guys,

I am interested to find out how the mdw stuff works and I followed the Access help file and use the wizard to create a secured MDB file with the secured.mdw file. Sure going in with Designer will not open it and then I manually add the following item to the DSN in the Code window and it works. So, if this works I'll add to the Connection form to include the MDW file. Sp, Let me know ->

<%
Set X= Server.CreateObject(&#34;ASP.DB&#34
X.dbUnit = &#34;999&#34;
X.dbMode = &#34;Grid&#34;
X.dbDSN = &#34;Driver={Microsoft Access Driver (*.mdb)}; UID=UserID; PWD=password; DBQ=C:InetpubwwwrootDBNWIND1.MDB;
systemdb=c:inetpubwwwrootdbsecured.mdw&#34;
X.dbSQL = &#34;SELECT * FROM Customers&#34;
X.ASPdb
%>