Problem with edit table (OpenInsight Specific)
At 21 DEC 1997 01:02:02PM Jacob Ignatius wrote:
I'm trying to display information in an edit table with a vertical scroll bar. I build a list of the records I want to display. When I use the function set_property to set the list property of the edit table as shown below not all the records are displayed.
s=set_property(edit_table,"LIST",display_list)
Only 73 of the 84 records are actually displayed. display_list is less than 64k and it contains all of the records I want to display. I am not therefore exceeding the maximum length of display_list. I feel the problem is with the edit table.
Suggestions welcome.
At 21 DEC 1997 02:16PM Cameron Revelation wrote:
Jacob,
When I use the function set_property to set the list property of the edit table as shown below not all the records are displayed. … Only 73 of the 84 records are actually displayed. display_list is less than 64k and it contains all of the records I want to display.
The problem is that 84 * rowsize (where rowsize is the sum of the max lengths of each column in the edit table properties dialog) is greater than 64k. In the form design mode, double-click on the Edit Table, click the More button, change the Max Rows value from 0 (64k) to -1 (unlimited). That should solve the problem.
Cameron Purdy
Revelation Software