Search results

  1. iponomarenko

    Cancelling update in browse cell

    Thanks, that should work, I come from .NET and was expecting some kind of event, in wich I could have cancelled the changes. By the way, I'm using V. 10.1.C but develloping with appbuilder and proc editor. Thanks again.
  2. iponomarenko

    Cancelling update in browse cell

    Hi all, I would like like to cancel changes in a browse cell by clicking a cancel button or using the escape key, but I can't figure out how to do it. Any Ideas ? Thanks !
  3. iponomarenko

    displaying frames

    Hi, What do you mean exactly by displaying frames ? If you want to have a frame appear on top of another then it's : FRAME myFrame:MOVE-TO-TOP().
  4. iponomarenko

    Replacing NOT CAN-FIND with a join

    Hello, well although this solution works, performance wise it is much slower then NOT CAN-FIND. So, I had to create a temp table, and populate it with the For Each, and then use the query on the temp table.
  5. iponomarenko

    Replacing NOT CAN-FIND with a join

    Thank you all for your answers, this last solution is what I was looking for.
  6. iponomarenko

    Replacing NOT CAN-FIND with a join

    Thanks, thats a good start, I was hoping to be able to do something like this : "FOR EACH tt1, FIRST tt2 LEFT OUTER-JOIN WHERE tt2.ii EQ tt1.ii AND tt2.ii EQ ?" but it doesn't work, it returns all records from tt1 anyway. However I can test in the loop if tt2.ii EQ ?, I guess it's a two step...
  7. iponomarenko

    Replacing NOT CAN-FIND with a join

    Hi, I'm a progress newbie, I would like to get all records from table1 where there are no corresponding records in table2. something like all customers who don't have any orders. this is easy with a FOR EACH customer and a NOT CAN-FIND (FIRST order WHERE order.customerID EQ...
Top