T threeo2 Registered User. Local time Today, 23:05 Joined Feb 11, 2003 Messages 31 Apr 19, 2004 #1 Is it possible to disable the "Resize" or "Restore Down" buttons in the Access application. In other words, not the form's controls but the main Access window? Any suggestions?
Is it possible to disable the "Resize" or "Restore Down" buttons in the Access application. In other words, not the form's controls but the main Access window? Any suggestions?
J jvangils Guest Apr 20, 2004 #2 You will have to delete the options in the SystemMenu of MsAccess with API-calls: Dim hMenu As Long Const SC_SIZE = &HF000 Const MF_BYCOMMAND = &H0 hMenu = GetSystemMenu(hWndAccessApp, 0) Call DeleteMenu(hMenu, SC_SIZE, MF_BYCOMMAND)
You will have to delete the options in the SystemMenu of MsAccess with API-calls: Dim hMenu As Long Const SC_SIZE = &HF000 Const MF_BYCOMMAND = &H0 hMenu = GetSystemMenu(hWndAccessApp, 0) Call DeleteMenu(hMenu, SC_SIZE, MF_BYCOMMAND)
T threeo2 Registered User. Local time Today, 23:05 Joined Feb 11, 2003 Messages 31 Apr 21, 2004 #3 jvangils, forgive my ignorance but I'm a newbie. Where would I paste the above code? Thanks for the reply.
jvangils, forgive my ignorance but I'm a newbie. Where would I paste the above code? Thanks for the reply.