Simple Access Security Solution!
I am using an Access Db (.mdb) as a backend database. The information contained is not sensitive and most of the users aren't that computer literate. I planned on setting up a password for the Db, but after reading all the forums it seems like a real nightmare (I've tried before w/ no luck). So I think I'll take the easy road: Use VBA to close Access every time the form attempts to load. I do realize that just by holding down shift it could disable the macro. My question is how the heck do I get a macro to excute upon loading the Db? I am very familar w/ Excel but somewhat new to Access. I am using this code in a module

Public Sub Application_Startup ()
docmd.Quit ()
End Sub

No luck getting this to run on startup. . Please advise...
I know that in Excel I could put the code in THIS WORKBOOK, what the best for ACCESS