worldatlas
MIS
I have a event procedure that execute when I click the button to execute the following events:
DoCmd.OpenQuery "Step01", acViewDesign
DoCmd.OpenQuery "Step02", acViewNormal
DoCmd.OpenQuery "Step03", acViewNormal
DoCmd.OpenQuery "Step04", acViewNormal
But query step03 is a make table query, so when it is executed, it pop up a window that said, "An existing table will be deleted. Do you want to continue."
And I want to program where I can select yes and not have the pop-up window appears.
DoCmd.OpenQuery "Step01", acViewDesign
DoCmd.OpenQuery "Step02", acViewNormal
DoCmd.OpenQuery "Step03", acViewNormal
DoCmd.OpenQuery "Step04", acViewNormal
But query step03 is a make table query, so when it is executed, it pop up a window that said, "An existing table will be deleted. Do you want to continue."
And I want to program where I can select yes and not have the pop-up window appears.