navigate through a table box object

AliBomberAliBomber Member Posts: 13
edited 2003-07-09 in Navision Attain
Hi,
I have a question concerning table box obejcts.
I created a form containing a table box. If I run the form, I can see the data held in table and I can move with the mouse manually from line to line. Each time I click on another line with the mouse, the line is getting blue highlighted...I think you know that...
So my problem now is, how can I program that moving through the lines. And how can I programm the highlighting of a line in a table box???
Thank you very much for helping me...

Comments

  • AliBomberAliBomber Member Posts: 13
    :cry::cry::cry::cry:
  • larrylarry Member Posts: 1
    In the table
    Create a field named "line no." (integer) in your table.
    incement this "line no." with 1 for every new record.

    IN the form
    declare currentline as a global integer

    set the ontimer interval on 50 or someting.

    in the ontime trigger put the following code

    IF "Line No." <> CurrentLine THEN BEGIN
    Currentline := "Line No.";
    CurrForm.UPDATE(FALSE);
    END;


    In every field what's inside your TableBox put the following code in your OnFormat Trigger:

    CurrForm."Field Name".UPDATESELECTED := "Line No." = CurrentLine

    Note "Field Name" = the name of your field

    I Think this is what you want!
Sign In or Register to comment.