Options

A Markedonly question

dustmandustman Member Posts: 15
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

Comments

  • Options
    RobertMoRobertMo Member Posts: 484
    Maybe instead of marking all records with MARK function, you could achieve the same by "inserting temporary table" technique.

    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?
               ®obi           
    ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  • Options
    randrewsrandrews Member Posts: 135
    I need :)
    I didn't know that it possible to show temporary table. I thought that only real table can be at form (sourcetable).
  • Options
    afarrafarr Member Posts: 287
    You may know most of this already, but for completeness here it is.

    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).
    Alastair Farrugia
  • Options
    randrewsrandrews Member Posts: 135
    I must read old messages before post question. It describes in
    http://www.mibuso.com/forum/viewtopic.php?t=4384

    Thanks for replying.
    I promise to be more attentiv...
Sign In or Register to comment.