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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Disable ... 2

Status
Not open for further replies.

ShyFox

Programmer
Mar 22, 2003
210
ES
Anyone know how could I disable the splash screen of the VFP? Getting annoying know.
Regards

As I go deeper the road seems to go further. We're just simply pasangers on the road of knowledge.
 
Just add -t to your shortcut. e.g. Mine is (don't worry about the drive letters):
Code:
"F:\Program Files\microsoft visual foxpro 8\vfp8.exe"  -t -cF:\vfp80\config.fpw
Rick
 
Shyfox

Can you clarify?. Do you mean when in development mode, or when running an executable, where you dont want the white blackboard to appear.


WTrueman
...if it works dont mess with it
 
Rick
Check this out:

Error Message
"File 'program.prg' does not exist"

The splash screen is removed, though.
Regards

As I go deeper the road seems to go further. We're just simply pasangers on the road of knowledge.
 
If you are using a CONFIG.FPW, make sure that you either provide a full path or set the default path for these statements:
Code:
_startup=
command=
Rick
 
rgbean (Programmer)
I don't use _Startup or Command statements in my VFP 8.0 configuration file!!! In fact I don't use it at all. I've created it only for your solution. This is how it looks:

TALK = OFF
MULTILOCKS = ON
EXCLUSIVE = OFF
SAFETY = OFF

Still the error is constantly there, on my desktop.
Hmmm ...
Regards

As I go deeper the road seems to go further. We're just simply pasangers on the road of knowledge.
 
Make sure you use '"':
"C:\Program Files\Microsoft Visual FoxPro 8\vfp8.exe" -t -c
 
Rick
Check this out:

Error Message
"File 'microsoft.prg' does not exist"

He, he, he ...

This is the shortcut:

"C:\Program Files\Microsoft Visual FoxPro 8\vfp8.exe" -t -cC:\Program Files\Microsoft Visual FoxPro 8\config.fpw

As I go deeper the road seems to go further. We're just simply pasangers on the road of knowledge.
 
ShyFox

The error persists because you are still not using the quotation marks around the path of the config file.

"C:\Program Files\Microsoft Visual FoxPro 8\vfp8.exe" -t -c"C:\Program Files\Microsoft Visual FoxPro 8\config.fpw "

Mike Gagnon

If you want to get the best response to a question, please check out FAQ184-2483 first.
 
Mike,
Good catch - I of course didn't need the quotes in my example due to my CONFIG.FPW file location. I didn't think to include the sometimes necessary 2nd set of quotes in the "generic" situation.

Rick
 
mgagnon (Programmer)
Star

rgbean (Programmer)
Star

Thanks

Regards

As I go deeper the road seems to go further. We're just simply pasangers on the road of knowledge.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top