Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
My Grid is moving horizontally and I want it to stay sti
Message
De
16/10/1997 09:13:15
 
 
À
14/10/1997 10:09:06
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Divers
Thread ID:
00054443
Message ID:
00054844
Vues:
43
>When I tab horizontally through my Grid, the first field disappears.
>How can I make my GRID freeze as I tab through it?
Hi Robert.

I had the same problem a while ago. I hope this code from the BeforeRowColChange helps:
IF This.RelativeColumn = 7 THEN
   IF (LASTKEY() = 4) OR (LASTKEY() = 9) OR (LASTKEY() = 13) THEN
       nRow = This.ActiveRow
       This.DoScroll(6)
       This.ActivateCell(nRow,1)   
       NODEFAULT
   ENDIF    
ELSE
   IF This.RelativeColumn = 1 THEN
      IF (LASTKEY() = 19) OR (LASTKEY() = 15) THEN
          NODEFAULT
      ENDIF    
   ENDIF    
ENDIF
Best Regards.

Marcia
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform