How to close popup

  • Thread starter Thread starter ppyxl
  • Start date Start date
P

ppyxl

:confused: Hi, guys,

I do not want to see the pop up windows saying----there r lots of
information on the clipboard. Do you want to be able to paste this into
another program later (Yes or No or Cancel) -

is there code for stoping them from poping up ??? Thanks!
 
Application.cutcopymode = False

executed before closing the workbook will avoid the message.

You can also do

application.Displayalerts = False
' close the workbook
Application.DisplayAlerts = True
 
It works in excel. thanks!

* D o y o u k n o w i n a c c e s s , h o w t o c l o s
e p o p u p w i n d o w s a s w e l l ? *

Thanks
 
* D o y o u k n o w i n a c c e s s , h o w t o c l o s
e p o p u p w i n d o w s a s w e l l ? *


in access VBA you would use 'DoCmd.SetWarnings (False)'
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top