how to read values from List Form

jaiverma2k2jaiverma2k2 Member Posts: 112
I want to read the value from List Form (Row by ROw) not from the table, how can i achieve this .
please suggest.
Regards,
Jai Verma

Comments

  • EgnazEgnaz Member Posts: 111
    Use the "Rec" of the subform it is filtered like you see it on the form. The form is just the view of the table. Build a function in the correct form from where you want the records and then do something like.
    MyRec.COPY(Rec);
    MyRec.FINDSET;
    REPEAT
      // Some Code
    UNTIL MyRec.NEXT = 0;
    
    Regards,
    egnaz
Sign In or Register to comment.