Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Suppress screen flash

Status
Not open for further replies.

gusbrunston

Programmer
Feb 27, 2001
1,234
US

Hi.

I've worried about the screen flashing between forms...

Aha!

Put this in your On Click event:
Code:
   ' Hide screen flash
   Application.Echo False
   DoCmd.Close  (or whatever you're doing)
   ' Show the screen again
   Application.Echo True



Gus Brunston :cool: An old PICKer, using Access2000. Celebrating this year my 72nd birthday and my 50th wedding anniversary.
padregus@attbi.com

 
Allow me just one remark:
If you should ever have a bug occuring in your code AFTER the "Application.echo false" statement then your application will seem to be frozen and debugging will be impossible.

Therefore it is extremely important to put the "Application.echo True" statement in the first line of the error trapping (I suppose that you an error trapping procedure in every sub and function?).
 

Hey, thank you so much, Francescina!

Important advice, for me and for anyone else who looks at this thread. Gus Brunston :cool: An old PICKer, using Access2000. Celebrating this year my 72nd birthday and my 50th wedding anniversary.
padregus@attbi.com

 
Gus,

You can have the same result, but without any code :

create a blank bmp-file from eg. MS Paint, and give it the same name as your database.
On starting the database, the Access-splash-screen is gone !!!

Regards,

PdtIt
 
Dear PdtIt:

Holy Schlamoley! What will you think of next! Gus Brunston :cool: An old PICKer, using Access2000. I manage Suggestions welcome. padregus@attbi.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top