Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Splash screen
Message
From
25/04/2000 22:54:21
 
 
To
25/04/2000 14:59:28
Joel Hokanson
Services Integration Group
Bellaire, Texas, United States
General information
Forum:
Visual FoxPro
Category:
Menus & Menu designer
Title:
Miscellaneous
Thread ID:
00363282
Message ID:
00363423
Views:
20
>How do I put a small graphic image as the screen background instead of just the top level menu and a white screen.?

Using teh Picture property like Matthew suggested tiles the image. If thats not what you want, you do somethign like:

_screen.addobject('imgLogo', 'image')
_screen.imgLogo.Picture = 'logo.bmp'
_screen.imgLogo.Top = _screen.height / 2 - _screen.imgLogo.Top / 2
_screen.imgLogo.left = _screen.width / 2 - _screen.imgLogo.left / 2
_screen.imgLogo.Visible = .t.


Also, if you want to display just your top level form and not the back white ground, you can put: SCREEN = OFF in your config.fpw

>Can I make it a file from the local directory so I can have differnt backgrounds depending on what directory the exe is being run in?

Sure
Previous
Reply
Map
View

Click here to load this message in the networking platform