Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Grid text size not changing
Message
De
17/04/2004 10:48:09
Cetin Basoz
Engineerica Inc.
Izmir, Turquie
 
 
À
17/04/2004 10:19:16
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Divers
Thread ID:
00895820
Message ID:
00895823
Vues:
19
>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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform