Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Test for row change in grid
Message
 
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Miscellaneous
Thread ID:
00542790
Message ID:
00542799
Views:
19
>I want to test for a user moving from one record (row) to another in a grid. I can figure out how to do this. Any help would be appreciated.

Add new property nRecno to your grid base class and the following code to the grid AfterRowColChange event
* AfterRowColChange event
IF Recno(This.RecordSource) <> This.nRecNo   && Row changed
   This.nRecNo = Recno(This.RecordSource) 
   * Some code  
ENDIF
Don't forget to initialize nRecno property in the Init of the grid.
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform