Upon opening my application I want my form f_Main to open maximized. I know that can simply be done by DoCmd.Maximize. However, as we all know, maximizing one form causes the rest to be maximized, which I don't want. In fact, the only form I want maximized at all times is f_Main. If I put DoCmd.Restore in a child window, it restores that window but it also restores the f_Main form, which I don't want.
I understand that if I make all other child windows Pop Ups that'll work but I can't do that because, for some very strange reason, if you set a form to be Pop Up you can't delete any records from that form. Instead, what you end up deleting is a record on the parent window (and thus the parent record instead of a child record). Therefore, setting the Pop Up property = True will not work for me. With all this in mind is there a way for me to accomplish what I want?
I understand that if I make all other child windows Pop Ups that'll work but I can't do that because, for some very strange reason, if you set a form to be Pop Up you can't delete any records from that form. Instead, what you end up deleting is a record on the parent window (and thus the parent record instead of a child record). Therefore, setting the Pop Up property = True will not work for me. With all this in mind is there a way for me to accomplish what I want?
Comment