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...
0
Comments
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!