I'm calling a macro in another workbook (x) from my personal macro workbook. I'm opening a form from workbook x and when it opens and I drag the form I get multiples of the form appearing. It seems like it only happens when I use application.screenupdating = False. Is there a way around this so the user doesn't have to see the other workbook opening?
Here is the code:
Application.ScreenUpdating = False
Workbooks.Open "C:\Documents and Settings\xxxxx\Desktop\orderboard.xls"
Application.Run ("orderboard.xls!Open_Form")
Workbooks("orderboard.xls").Close
Thank you for your time!!
Here is the code:
Application.ScreenUpdating = False
Workbooks.Open "C:\Documents and Settings\xxxxx\Desktop\orderboard.xls"
Application.Run ("orderboard.xls!Open_Form")
Workbooks("orderboard.xls").Close
Thank you for your time!!