Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Logo Screens
Message
From
01/07/1999 14:57:39
 
 
To
01/07/1999 11:56:31
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Title:
Miscellaneous
Thread ID:
00236501
Message ID:
00236634
Views:
10
Have you considered making an image and using it as wallpaper for the main screen? Some sample code:

* Add a Wallpaper object to the Screen if not already present:
IF NOT PEMSTATUS(_Screen, "imgWallPaper", 5)
_SCREEN.AddObject("imgWallPaper","IMAGE")

ENDIF

* Set the Picture property of the imgWallpaper object:
_SCREEN.imgWallPaper.Picture = [your file name here]

* Size & position it:
_SCREEN.imgWallPaper.Top = 0
_SCREEN.imgWallPaper.Left = 0
_SCREEN.imgWallPaper.Height = SYSMETRIC(2) - 87
_SCREEN.imgWallPaper.Width = SYSMETRIC(1)

_SCREEN.imgWallPaper.Visible = .T.
_SCREEN.imgWallPaper.Stretch = 1


>Does anyone have an example of how to use a logo screen either as a class or a form. I am trying to display information to the user and would like to do it on a form that stays up all the time.
>
>Thanks
>
>Jeff Whitaker
Regards. Al

"Violence is the last refuge of the incompetent." -- Isaac Asimov
"Never let your sense of morals prevent you from doing what is right." -- Isaac Asimov

Neither a despot, nor a doormat, be

Every app wants to be a database app when it grows up
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform