Connecting Tech Pros Worldwide Forums | Help | Site Map

Screen Refresh - How to hide the action "behind the curtain"

John Baker
Guest
 
Posts: n/a
#1: Nov 13 '05
Hi:

As in the "Wizard of Oz", I want people to "pay no attention to the man behind the
curtain", by freezing the screen while a whole lot of things happen. I know about ECHO
OFF, but this appears to reset when forms are opened and under other conditions. Are
there any commands (Screen Refresh=False?) that will stop screen refreshing until another
command is encountered that turns the screen refreshing on again?

Thanks in advance.

John Baker

Steve Jorgensen
Guest
 
Posts: n/a
#2: Nov 13 '05

re: Screen Refresh - How to hide the action "behind the curtain"


Turning the Access screen refresh off entirely is a radical operation that I
prefer to avoid. A more precise operation is to set the the Painting property
of a form to False so that just that form will not update until its painting
is turned back on.

In either case, be sure the code that hides activity on the display has an
error handler, and that error handler puts everything back to normal, so you
don't end up being unable to operate your interface after an error occurs.

On Fri, 22 Oct 2004 01:51:35 GMT, John Baker <Baker.JH@Verizon.net> wrote:
[color=blue]
>Hi:
>
>As in the "Wizard of Oz", I want people to "pay no attention to the man behind the
>curtain", by freezing the screen while a whole lot of things happen. I know about ECHO
>OFF, but this appears to reset when forms are opened and under other conditions. Are
>there any commands (Screen Refresh=False?) that will stop screen refreshing until another
>command is encountered that turns the screen refreshing on again?
>
>Thanks in advance.
>
>John Baker[/color]

John Baker
Guest
 
Posts: n/a
#3: Nov 13 '05

re: Screen Refresh - How to hide the action "behind the curtain"




Steve:

Thanks.

Could you let me know HOW (that is, the code and commands etc) I would do either of these.
I was thinking of the Screen Refresh since I go throgh a nbumnber oif streps which involve
opening and closing various forms.

Best

John

Steve Jorgensen <nospam@nospam.nospam> wrote:
[color=blue]
>Turning the Access screen refresh off entirely is a radical operation that I
>prefer to avoid. A more precise operation is to set the the Painting property
>of a form to False so that just that form will not update until its painting
>is turned back on.
>
>In either case, be sure the code that hides activity on the display has an
>error handler, and that error handler puts everything back to normal, so you
>don't end up being unable to operate your interface after an error occurs.
>
>On Fri, 22 Oct 2004 01:51:35 GMT, John Baker <Baker.JH@Verizon.net> wrote:
>[color=green]
>>Hi:
>>
>>As in the "Wizard of Oz", I want people to "pay no attention to the man behind the
>>curtain", by freezing the screen while a whole lot of things happen. I know about ECHO
>>OFF, but this appears to reset when forms are opened and under other conditions. Are
>>there any commands (Screen Refresh=False?) that will stop screen refreshing until another
>>command is encountered that turns the screen refreshing on again?
>>
>>Thanks in advance.
>>
>>John Baker[/color][/color]

Jack MacDonald
Guest
 
Posts: n/a
#4: Nov 13 '05

re: Screen Refresh - How to hide the action "behind the curtain"


Application.Echo

Concur with Steve's advice about setting everything back to normal.
It's a pain trying to get everything running again while operating
"blind" with Echo set to False



On Fri, 22 Oct 2004 11:08:01 GMT, John Baker <Baker.JH@Verizon.net>
wrote:
[color=blue]
>
>
>Steve:
>
>Thanks.
>
>Could you let me know HOW (that is, the code and commands etc) I would do either of these.
>I was thinking of the Screen Refresh since I go throgh a nbumnber oif streps which involve
>opening and closing various forms.
>
>Best
>
>John
>
>Steve Jorgensen <nospam@nospam.nospam> wrote:
>[color=green]
>>Turning the Access screen refresh off entirely is a radical operation that I
>>prefer to avoid. A more precise operation is to set the the Painting property
>>of a form to False so that just that form will not update until its painting
>>is turned back on.
>>
>>In either case, be sure the code that hides activity on the display has an
>>error handler, and that error handler puts everything back to normal, so you
>>don't end up being unable to operate your interface after an error occurs.
>>
>>On Fri, 22 Oct 2004 01:51:35 GMT, John Baker <Baker.JH@Verizon.net> wrote:
>>[color=darkred]
>>>Hi:
>>>
>>>As in the "Wizard of Oz", I want people to "pay no attention to the man behind the
>>>curtain", by freezing the screen while a whole lot of things happen. I know about ECHO
>>>OFF, but this appears to reset when forms are opened and under other conditions. Are
>>>there any commands (Screen Refresh=False?) that will stop screen refreshing until another
>>>command is encountered that turns the screen refreshing on again?
>>>
>>>Thanks in advance.
>>>
>>>John Baker[/color][/color][/color]


**********************
jackmacMACdonald@telusTELUS.net
remove uppercase letters for true email
http://www.geocities.com/jacksonmacd/ for info on MS Access security
Closed Thread