navigate through a table box object

AliBomber
Member Posts: 13
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...
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
-
0
-
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!0
Categories
- All Categories
- 73 General
- 73 Announcements
- 66.6K Microsoft Dynamics NAV
- 18.7K NAV Three Tier
- 38.4K NAV/Navision Classic Client
- 3.6K Navision Attain
- 2.4K Navision Financials
- 116 Navision DOS
- 851 Navision e-Commerce
- 1K NAV Tips & Tricks
- 772 NAV Dutch speaking only
- 617 NAV Courses, Exams & Certification
- 2K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 320 Dynamics CRM
- 111 Dynamics GP
- 10 Dynamics SL
- 1.5K Other
- 990 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 35 Design Patterns (General & Best Practices)
- 1 Architectural Patterns
- 10 Design Patterns
- 5 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1.1K General Chat
- 1.6K Website
- 83 Testing
- 1.2K Download section
- 23 How Tos section
- 252 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions