Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
My Grid is moving horizontally and I want it to stay sti
Message
From
16/10/1997 09:13:15
 
 
To
14/10/1997 10:09:06
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00054443
Message ID:
00054844
Views:
38
>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
Previous
Reply
Map
View

Click here to load this message in the networking platform