Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Bitmap in main window
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Divers
Thread ID:
00151595
Message ID:
00151628
Vues:
26
As Edward mentioned, you can use the picture property of the _screen object to tile a picture in the main VFP screen. If you want a single image, use an image object:
_screen.addobject('imgLogo','image')
_screen.imglogo.picture = "myImage.bmp"
_screen.imglogo.top = (_screen.height/2) - (_screen.imglogo.height/2)
_screen.imglogo.left = (_screen.width/2) - (_screen.imglogo.width/2)
_screen.imglogo.visible = .t.
>When there are no forms open in our app, the users see a big white screen with a menu on top. I was thinking it would be neat if the company logo could be in that main window, faintly, like a watermark. Is it possible to do that?
>
>Thanks,
>
>-Michelle
kenweber
GCom2 Solutions
Microsoft Certified Professional

Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform