I am using the very helpful macro discussed in the FAQ, which shows how to hide the Access window.
One problem. I have forms that have their
and
properties set to Datasheet. They have their
properties set to True as per the FAQ. But when I open them, they don't display in the datasheet view, but only as continuous forms.
I am opening the forms from a command button. Here's what's in the command button's Click event:
What is really strange is that if I open "frm1" by simply double-clicking it in the database window, then the Access window hides itself and the form displays properly in datasheet view.
One problem. I have forms that have their
Code:
DefaultView
Code:
ViewsAllowed
Code:
PopUp
I am opening the forms from a command button. Here's what's in the command button's Click event:
Code:
DoCmd.OpenForm "frm1", acNormal
What is really strange is that if I open "frm1" by simply double-clicking it in the database window, then the Access window hides itself and the form displays properly in datasheet view.