Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Foxpro header
Message
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Title:
Miscellaneous
Thread ID:
00117250
Message ID:
00117262
Views:
14
>>>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
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform