Hello, I want to offer my users to put certain records in a "group". so there is a table called 'groups' that carries the pk of the relevant records plus a group id (that links to a a name). the only way I found to do this is to "walk" through the records in a loop an create the group entries.
here comes question 1: could you think of an import feature that does the job for me (that writes certain fields of the found set in another table). that would be extremely helpful for several issues that i have to solve...
question 2: Servoy loads 200 records when the found set is larger than that. everything is fine when you scroll through a large set, since more and more records are loaded the further you go. but when you walk through your records in a loop, the loop exits at record 200. the problem is that I am using the maxRecordIndex to do that. and that gives me 200. a full table count wouldn't help, since I don't know the last search request (I don't know what to count). How do I find out, how large the FOUND set really is?
Did I make myself understandable? Any ideas anyone?
Thanks.