Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Foxpro header
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire d'écran & Écrans
Titre:
Divers
Thread ID:
00117250
Message ID:
00117262
Vues:
15
>>>I Can't quite figure how to hide/eliminate the top of the screen where it says "microsoft Visual Foxpro" & then right beneath there is a 'toolbar' with icons displaying a printer, an exclamation pt, etc. This is visible even when a form is running. Thanks.
>>
>>_SCREEN.Caption="my title."
>>also you can add Title=My Title in Config.fpw
>>Standard Toolbar will not be visible when you run Exe. Anyway you can always check for it:
>>IF WEXIST("standard")
>> release window standard
>>ENDIF
>
>Thanks. Worked.

Hi Timothy,

As you may have noticed, releasing the standard toolbar when testing means you have to manually restore it via View/Toolbars. You can get around this by:
IF WEXIST('STANDARD')
  HIDE WINDOW STANDARD
ENDIF
when you start, and:
IF WEXIST('STANDARD')
  SHOW WINDOW STANDARD
ENDIF
in your shutdown code.
George

Ubi caritas et amor, deus ibi est
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform