Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Define window's Title bar
Message
From
04/04/2000 17:14:16
 
 
To
04/04/2000 09:02:33
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00354411
Message ID:
00355298
Views:
17
>One more question. Is there a way to omit the entire title bar?

define window myWindow from 0,0 to 20, 10 grow
show window mywindow


But Ed's right, you'll probably want to use a form. ALso, just to let you know, the reason your window was shown with a title bar is because you included the FLOAT cluase, which naturally requires a title bar if you want to move it around.

In VFP 3 and 5, to turn the title bar off a form:

Caption = ""
MinButton = .F.
MaxButton = .F.
Closeable = .F.
ControlBox = .F.
Moveable = .F.


In VFP 6, to turn the title bar off a form:

TitleBar = 0
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform