Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Grid text size not changing
Message
From
17/04/2004 10:48:09
Cetin Basoz
Engineerica Inc.
Izmir, Turkey
 
 
To
17/04/2004 10:19:16
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00895820
Message ID:
00895823
Views:
20
>Hi,
>
>I am using VFP8 SP1 on Win2k SP4.
>My touch screen application had a few grid
>display on their individual pages.
>
>However, I can't seem to change the grid
>text size. Why.
>
>Any one can assist me on this issue
>as I don't had problem with VFP6.
>
>I had something like
>
>
>* here is the setup of the controlsource
>
>WITH thisform.pfgmain.pgConfirm.grdConfirmGrid.column1
>
> .text1.Alignment = 2
> .text1.FontBold = .T.
> .text1.FontSize = 35
>
>ENDWITH

Grid objects have an hierarchy. Set it at column level. If you'd set it at control level then set sparse off. ie:
Either :
WITH thisform.pfgmain.pgConfirm.grdConfirmGrid.column1
	.Alignment = 2
	.FontBold = .T.
	.FontSize = 35
ENDWITH
* Or
WITH thisform.pfgmain.pgConfirm.grdConfirmGrid.column1
	.text1.Alignment = 2
	.text1.FontBold = .T.
	.text1.FontSize = 35
    .Sparse = .F.	
ENDWITH
Cetin
Çetin Basöz

The way to Go
Flutter - For mobile, web and desktop.
World's most advanced open source relational database.
.Net for foxheads - Blog (main)
FoxSharp - Blog (mirror)
Welcome to FoxyClasses

LinqPad - C#,VB,F#,SQL,eSQL ... scratchpad
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform