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

how to replace starting foxpro logo/screen with custom built image.

Status
Not open for further replies.

iamrehan

Programmer
Sep 4, 2003
1
0
0
PK
is there any way to replace the starting foxpro logo/screen which has the picture of fox with the custom built image file. also i want to replace this starting screen in my executable files. pls reply quicly.
 
I don't believe there is any way to change it, but you can eliminate it with a shortcut line switch -t. i.e.
Code:
C:\FPW26\FOXPROW.EXE -t -cC:\fpw26\config.fpw
You can add you're own logo to the main "screen" with something like:
Code:
   @ 0,0 SAY "Mylogo.bmp" BITMAP STRETCH
Rick

 
I used the following lines in my application:

clear
@ 5.600,scols()/4 SAY "welcome.bmp" BITMAP SIZE 18.067,77.800 STYLE "T"
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top