Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
_screen.picture
Message
General information
Forum:
Visual FoxPro
Category:
Troubleshooting
Title:
Miscellaneous
Thread ID:
00259892
Message ID:
00259904
Views:
28
Hi Sherry,


> I tried to use a bmp file for my screen back ground by using:
> _screen.picture = logo.bmp
>when I ran the app. I have the company logo all over the screen. What did I

Thats correct. The Picture is a tiled wallpaper like thingy

Try this
_screen.addobject('back','Image')
with _screen.Back
    .picture='logo.bmp'
    .left = .Parent.width / 2 - .width / 2
    .top = .Parent.height / 2 - .height / 2
    .Visible = .T.
endwith
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform