The information in this article applies to:
SUMMARYMany Microsoft Windows-based applications display a message with title, copyright, and version information while a program is starting. This is primarily to make a slow initialization seem faster. It is possible to accomplish this same technique with FoxPro. MORE INFORMATION
To create your screen, use the screen generator to create a screen
that has the desired information. Normally, this includes information
about copyright, version, user identification, and title. It can also
include identifying graphics such as the application icon.
When the initialization process has completed, issue the following
command:
This command will remove the startup message screen and continue
normal execution of the program.
On some faster computers, the screen may flash by so fast that the user will not be able to read it. A different technique must be allowed to work around these undesirable results. Instead of implementing this with the #NOREAD generator directive, use the #READCLAUSES generator directive to add a TIMEOUT clause to the READ command that is created by GENSCRN.PRG. In the SETUP code for the screen, add a line similar to the following:
When you add a line to DO this screen during the beginning portion of
your program, it will display for three seconds before being cleared.
Additional query words: FoxDos FoxWin startup initial
|
|
Last Reviewed: August 13, 1999 © 1999 Microsoft Corporation. All rights reserved. Terms of Use. |