Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
_Screen.Picture
Message
 
 
To
02/10/2001 15:54:50
General information
Forum:
Visual FoxPro
Category:
Pictures and Image processing
Title:
Miscellaneous
Thread ID:
00563259
Message ID:
00563352
Views:
21
This message has been marked as the solution to the initial question of the thread.
>When defining _Screen.Picture = "FileName.gif"
>
>Is there a way I can get the picture to show once instead of like wallpaper?
>
>Thanks in advance for any help.
>
>Aloha,
>
>James

I don't know if it possible with _Screen.Picture but you can add an image control to the _Screen object and show picture in it. This way you have full control over picture position and size. You can even show multiple pictures
_screen.AddObject("oImg", "Image")
_screen.oImg.Picture = "FileName.gif"
_screen.oImg.Top = 100
_screen.oImg.Left = 100
_screen.oImg.Visible = .t.
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform