J jrjr A work in progress Local time Yesterday, 23:47 Joined Jul 23, 2004 Messages 291 May 27, 2005 #1 Is it possible to change the background color on the Find and Replace dialog box that access provides? I open it with this code: DoCmd.DoMenuItem acFormBar, acEditMenu, 10, , acMenuVer70
Is it possible to change the background color on the Find and Replace dialog box that access provides? I open it with this code: DoCmd.DoMenuItem acFormBar, acEditMenu, 10, , acMenuVer70
ghudson Registered User. Local time Yesterday, 23:47 Joined Jun 8, 2002 Messages 6,194 May 28, 2005 #2 No. Ditch the outdated wizard created menu commands and use the RunCommand's. Code: DoCmd.RunCommand acCmdReplace
No. Ditch the outdated wizard created menu commands and use the RunCommand's. Code: DoCmd.RunCommand acCmdReplace