Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10
Default hiding processes

Hello,
The macro i am working on has a number of processes that
involve copying information from one file to the other.
This causes the screen to 'flash' for a period of time. Is
there any way to make some of these processes invisible.
(I'm worried that this might confuse the people that will
be running it)
Thanks for your help.
marta
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,885
Default hiding processes

hi
use
application.screenupdating=false
'your code
application.screenupdating=True




--
Regards
Frank Kabel
Frankfurt, Germany


marta wrote:
Hello,
The macro i am working on has a number of processes that
involve copying information from one file to the other.
This causes the screen to 'flash' for a period of time. Is
there any way to make some of these processes invisible.
(I'm worried that this might confuse the people that will
be running it)
Thanks for your help.
marta

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7,247
Default hiding processes

Marta,

Set the ScreenUpdating property to False, run your code, and then
restore it to True. E.g.,

Application.ScreenUpdating = False
' your code here
Application.ScreenUpdating = True

--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com



"marta" wrote in message
...
Hello,
The macro i am working on has a number of processes that
involve copying information from one file to the other.
This causes the screen to 'flash' for a period of time. Is
there any way to make some of these processes invisible.
(I'm worried that this might confuse the people that will
be running it)
Thanks for your help.
marta



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Processes in one cell jai Excel Discussion (Misc queries) 2 January 25th 08 05:06 PM
Preserving Text Only despite Excel's # Recognition Processes Mike S. Excel Discussion (Misc queries) 5 July 13th 07 11:15 PM
hiding help with excel Excel Discussion (Misc queries) 1 March 9th 07 01:47 AM
Hiding a button when hiding rows fergusor Excel Discussion (Misc queries) 2 August 10th 06 02:31 PM
HIDING DIV/0! webster Excel Discussion (Misc queries) 2 March 10th 06 12:14 AM


All times are GMT +1. The time now is 07:14 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"