How to Suppress the FoxPro for UNIX Startup ScreenLast reviewed: August 28, 1995Article ID: Q118920 |
The information in this article applies to:
In FoxPro for UNIX, you can suppress the FoxPro startup screen by setting the FOXPROSWX environment variable before starting FoxPro. For example:
Bourne Shell
FOXPROSWX=-t ; export FOXPROSWX -or- FOXPROSWX="-t" ; export FOXPROSWX C-Shell
setenv FOXPROSWX -t -or- setenv FOXPROSWX "-t"To use more than one startup switch, use the following syntax. These examples will eliminate the startup screen (-t) and disable the mouse (-e):
Bourne Shell
FOXPROSWX='-t -e'; export FOXPROSWX C-Shell
setenv FOXPROSWX '-t -e' REFERENCESFoxPro for UNIX "Installation and Configuration Guide"
|
Additional reference words: FoxUnix 2.60 FOXPROSWX environment env startup
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |