i would like a linked开发者_如何学Python datasheet (table) to open once access is opened. how do i do this?
Create a form with your linked table as it's record source. Set the form to open automatically at database startup.
Edit: If you really, really feel you need to open the table directly instead of using a form ... look at DoCmd.OpenTable You could put your DoCmd.OpenTable statement in an autoexec macro. Then it should run every time you open the database.
精彩评论