K
Kelvin Beaton
This code hides the database window,
Docmd.SelectObject acTable, , True
Docmd.RunCommand acCmdWindowHide
so what displays the database window?
I also want to display and hide "full menus" using VBA.
Also when the form closes, I have it deleting a table.
DoCmd.DeleteObject acTable, "PSI_Denials"
How can I check that the table exists?
If it doesn't exist, the it shouldn't try and delete the table, if it does
exist, it should delete it....
Any help would be appreciated!
Thanks
Kelvin
Docmd.SelectObject acTable, , True
Docmd.RunCommand acCmdWindowHide
so what displays the database window?
I also want to display and hide "full menus" using VBA.
Also when the form closes, I have it deleting a table.
DoCmd.DeleteObject acTable, "PSI_Denials"
How can I check that the table exists?
If it doesn't exist, the it shouldn't try and delete the table, if it does
exist, it should delete it....
Any help would be appreciated!
Thanks
Kelvin