Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Potential HalfHeightCaption Bug
Message
From
16/04/2005 16:50:39
 
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Environment versions
Visual FoxPro:
VFP 9
OS:
Windows XP SP2
Network:
Windows 2000 Server
Miscellaneous
Thread ID:
01005242
Message ID:
01005492
Views:
20
>Hi
>
>I am not sure if this is a bug or by design but if you set the HalHeightCaption to .T. then try to set the TitleBar property to Zero the titlebar is still displayed. I would have expected to see the title bar turned off.
>
>Simon

By (bad/bug) design, HalfHeightCaption is checked before TitleBar:
if HalfHeightCaption=.T.
 show halfTitle
elseif TitleBar=1
 show fullTitle
else
 show noneTitle
More sense if:
if TitleBar=0
 show noneTitle
elseif HalfHeightCaption=.T.
 show halfTitle
else
 show fullTitle
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform