Hello,
I build a db with one simple and a handful of variously complex forms and decided to test a copy of it by splitting it to ensure it would work.
The simple form loads when the db opens and has only a set of option buttons on it. Each button, when clicked, opens a form. Note that I did not use a wizard to do this. The command behind the button is a simple "docmd" method to open the designated form. This works just fine in my unsplit copy.
After splitting, the buttons no longer work. A click produces no action whatsoever. The backend is linked; the front end is a de. I'm thinking I'm missing some really rudimentary design issue--like some manner I'm supposed to know to code in if I intend to split a db. Like, is everything supposed to be ADO or is it okay to use DAO?
Any ideas why my code simply won't work now that the db is split? The only form that seems to work as planned is one that is based on a simple query and the user types the values directly into the grid. Most of my forms are heavily coded, though, due to numerous calculations needed. The code was compiled before the split.
The main form with the buttons opens using a sub Main() procedure on open. It is not "linked" to the main db.
I'm using Access 2016 (Office 365) and Windows 10.