Is there a way to make sure when u set a " markedonly" the user can not unmark the records, as in " filtergroup"???
I need to set a filter based on a lot of values and marked only seems to be the only way, but I don't want users to be able to un-mark them by " showing all"
TIA
Cheers
Erik
0
Comments
This can be even better, if you want to present a list form to user to select a record or something like that...
Need more details?
¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
I didn't know that it possible to show temporary table. I thought that only real table can be at form (sourcetable).
The form MyForm must have Source Table = MyTable (in the form properties).
Create MyTempRecord with subtype MyTable, and Temporary = Yes.
Insert the records in MyTempRecord, and then do:
FORM.RUN(FORM::MyForm,MyTempRecord).
http://www.mibuso.com/forum/viewtopic.php?t=4384
Thanks for replying.
I promise to be more attentiv...