If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > PC based Database Applications > Microsoft Excel > Cutting and Pasting

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 11-09-06, 10:09
michaeldavid michaeldavid is offline
Registered User
 
Join Date: Dec 2004
Posts: 35
Cutting and Pasting

Hi,

I have found that if I cut anything and hence it is held in the clipboard, then the speed at which macros run (in particular anything that puts information on the screen)slows dramatically.

Is there a reason for this and can it be resolved?

Many thanks
Mike
Reply With Quote
  #2 (permalink)  
Old 11-09-06, 12:54
shades shades is offline
Registered User
 
Join Date: Oct 2003
Posts: 1,091
Howdy. It depends on what you are trying to do. Sometimes you don't need the clipboard to accomplish copy/paste.
__________________
old, slow, and confused
but at least I'm inconsistent!

Rich
(retired Excel 2003 user, 3/28/2008)

How to ask a question on forums
Reply With Quote
  #3 (permalink)  
Old 11-09-06, 14:06
shades shades is offline
Registered User
 
Join Date: Oct 2003
Posts: 1,091
Also, if it is screen display problems, then put the following in your code

Code:
Application.ScreenUpdaing = False

' code goes here

Application.ScreenUpdating = True
This will prevent screen re-draws which can slow the process and can be very annoying for the user.
__________________
old, slow, and confused
but at least I'm inconsistent!

Rich
(retired Excel 2003 user, 3/28/2008)

How to ask a question on forums
Reply With Quote
  #4 (permalink)  
Old 11-11-06, 20:44
davesexcel davesexcel is offline
Registered User
 
Join Date: Oct 2006
Posts: 5
Quote:
Originally Posted by michaeldavid
Hi,

I have found that if I cut anything and hence it is held in the clipboard, then the speed at which macros run (in particular anything that puts information on the screen)slows dramatically.

Is there a reason for this and can it be resolved?

Many thanks
Mike
Lets see the code, maybe we can speed it up for you
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On