Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello,
I'm not sure there is a concrete answer for this question, but her goes: First up some background I have an excel application that uses Excel 2000 - its size is 5.92 MB - I have 8 sheets in this application - approximately 50-70 checkboxes - approximately 5-10 command buttons with VBA code behind the scene for each button - numerous cells with formulas that are dependant on preceding sheets Whenever I open or close my Excel application it takes a while "to d whatever its doing" before it will actually execute the actua procedure of open or close. Or in other words it lags while shuttin down or when I open it. Why is this? Is there any way I can cut down on this loading time. Does code that is not in use such as commented out VBA code add to thi problem of lagginess (is that even a word)? Thanks for any help I can get Also worth noting: I dont believe I have anything setup in the code that executes on th worksheets opening -- Message posted from http://www.ExcelForum.com |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Turning off the screen refresh at open can sometime speed it up a little
I think.......It allows macros to run in background without the need to refresh the screen after every code. You need to make sure you turn it back on once opened. This works well during long codes connected to VB Controls. Application.ScreenUpdating = False Application.ScreenUpdating = True It may help.......but others may have a better idea! Celtic_Avenger --- Message posted from http://www.ExcelForum.com/ |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
OPENING AND CLOSING OF EXCEL 07 FILES | Excel Discussion (Misc queries) | |||
Opening then later Closing an Excel file in VBA | Excel Discussion (Misc queries) | |||
Excel 2003/2007 Crash when opening/closing files | Excel Discussion (Misc queries) | |||
Error while opening/Closing excel | Excel Discussion (Misc queries) | |||
Excel 2003 calculates new on closing/opening outlines | Excel Discussion (Misc queries) |