Recent content by fuji36

  1. F

    Search not working ?

    It seems to me that 'Search' is not currently working..
  2. F

    QUERY-PREPARE FOR STATIC BROWSE

    Yes, Osborne- AppBuilder created, thanks for the clue . appreciate it.
  3. F

    QUERY-PREPARE FOR STATIC BROWSE

    I have a simple Dialog form, with a single Browse. The Query hits a couple of tables (ie: FOR EACH 'this', FIRST 'that',...). I'm looking to capture the default 'PREPARE-STRING' attribute and store it in a variable. I can see in Help that the 'Prepare-String' attribute will return '?' if...
  4. F

    'short circuit' with 'If' statement

    Does Progress 4gl have the 'short-circuit' behavior like some other languages, in a multiple condition 'If' statement? ie: If ( (varA = False) OR (varB = False) Or (varC = False)) then do: //stuff end. Else do: //other stuff End. 'short-circuit'...
  5. F

    Answered Exit a 'For-Each' loop

    I would like to exit a 'for each' loop early if conditions are met, not sure of the syntax.
  6. F

    Smart Window Browses Editing (Open Edge)

    Thanks Andrew. The code change, adding the 4th table is where the problem is, I would expect to see exactly what your test shows. Could be that I messed something up in the source code, although when I first made the change the problem occured, before any fiddling w/code. I'm...
  7. F

    Smart Window Browses Editing (Open Edge)

    And everything looks fine there, code from procedure Editor of .w file: /* Browse definitions */ DEFINE BROWSE BROWSE-1 &ANALYZE-SUSPEND _UIB-CODE-BLOCK _DISPLAY-FIELDS BROWSE-1 wWin _FREEFORM QUERY BROWSE-1 NO-LOCK DISPLAY...
  8. F

    Smart Window Browses Editing (Open Edge)

    The Section Editor does take me to the 'open-query' section, added my table there, no problem. But to re-define the 'browse' is another deal altogether, the Section Editor doesn't get me there. As I said earlier, I did get into the Procedure Editor and updated some of the...
  9. F

    Smart Window Browses Editing (Open Edge)

    I did use the Query Wizard, then went to 'free-form' as the app went along . The problem arose when I needed to add another table to the browse/query that is now 'free-form'. Code Editor, revising the 'Open Query' trigger, no problem. However, the Code Editor does not allow me to get to the...
  10. F

    Smart Window Browses Editing (Open Edge)

    The App Builder is what I am using, the problem is : when editing the .w file, the Section Editor does not allow me to edit the 'browse' definition (to add another table ) that was originally created using the Query Wizard. I can open up the .w with the Procedure Editor, make required...
  11. F

    Smart Window Browses Editing (Open Edge)

    I'm working on an App Builder-Smart Window- added a browse with the 'browse wizard' . Later on I decide I need another table to be 'joined-in', the query is by now a 'free-form' query. I cannot remember how to get to the 'browse definition' code, I can view it fine. The Section Editor does...
  12. F

    How to clear a 'Browse'

    Thank you, I did it this way : /* On Change of first browse, to clear order-browse */ order-browse:SELECT-ALL(). order-browse:DELETE-SELECTED-ROWS().
  13. F

    Need 'UNique', or 'Distinct' records for my Browse

    Can-Find is not 'usable'' in a Query, I may have to go the 'temp-table' route
  14. F

    Need 'UNique', or 'Distinct' records for my Browse

    I'll give that a try, thank you Casper.
  15. F

    Need 'UNique', or 'Distinct' records for my Browse

    Is there a 'keyword' , or similar , in Progress, when querying (?) that would give me 'Unique' records, such as using 'Distinct' in SQL? ie: I want all customers that have placed orders , but I don't want repeats , each customer only (1) time, I'm using a Browse w/a Query?
Top