by James >> Sat, 25 Oct 2003 19:02:02 GMT
in my CustomerList form load method i have this -
its straight out of the book, However DisplayCollection_Foward comes
up as an error unknown type or constant in both the methods below? any ideas what i should use instead?
load() updating;
begin
table.setCellText (1,1, "Customer ID" & Tab & "First Name" & Tab & "Last Name");
table.displayCollection (app.myBookshop.allCustomers, true, Table.DisplayCollection_Foward, null);
end;
and my Btn_List for my customer list is as such -
btnList_click(btn: Button input) updating;
vars
begin
table.displayCollection (app.myBookshop, true,
Table.DisplayCollection_Foward, null);
end;