Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Freeze a pane in a grid
Message
De
25/02/1998 13:33:34
 
 
À
25/02/1998 13:23:02
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Divers
Thread ID:
00081130
Message ID:
00081132
Vues:
19
>I have a view bound to a grid and wish to freeze the
>first column of the grid and scroll the other columns
>horizontally. If this is possible could someone please
>get me jump started. Thanks in advance.
>
>Dave

****UT Search *****
>Is it possible to lock the first column of a grid so that it always stays visible while scrolling the remaining columns
left and right? I know this can be done in Excel, but I can't seem to find how to do it with a VFP grid.

If you have time and patience, you can play with this two snippets:

**** Grid.Scrolled event
LPARAMETERS nDirection
if thisform.blockscroll=.t.
return
endif
thisform.blockscroll=.t.
do case
case this.column1.columnorder=this.leftcolumn
case this.column1.columnorder<=this.leftcolumn-1
for n=this.column1.columnorder+1 to this.leftcolumn-1
this.column1.columnorder=n
endfor
this.doscroll(4)
this.refresh
case this.column1.columnorder>this.leftcolumn
for n=this.column1.columnorder-1 to this.leftcolumn step -1
this.column1.columnorder=n
endfor
this.column1.setfocus
endcase
thisform.blockscroll=.f.
*** Grid.afterrowcolchange event
this.scrolled
Edward Pikman
Independent Consultant
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform