Recent content by SteveJBarratt

  1. S

    Error code 148

    Some more info for your test. I have got as far as, reformating the column, before you delete the row. this seems to work. The real problem appears to be when the row-display changes the format and you then delete the new formated column. We also now have introduced a second problem, the...
  2. S

    Error code 148

    :blush1: Ooops!:blush1: A colleague of mine, found that this does NOT work!! I tested the example without trying both settings of the flag. The truth is if I use the default settings (Integer in the browse) and do not try to amend the format of the browse cell. Then delete the row. No...
  3. S

    Error code 148

    ;p Problem Solved!;p The problem was that the browse cell in question had default format of decimal. Within the code I was re-setting the cell format to integer if a flag was set and changing to decimal with an else statement. The solution was to default it to a integer and ONLY change it...
  4. S

    Error code 148

    The changing of the font in the browse is only required for this cell. This is to indicate the cell that is being updated. I don't believe that is as anything to do with this error message. We use this line of code in many other programs without any errors. We are using 9.1D SP6. The Problem...
  5. S

    Error code 148

    This is the row display of my browse, which sets the format. FIND FIRST ean OF t_display NO-LOCK NO-ERROR. IF AVAILABLE ean THEN DO: IF ean.weighted-item THEN ASSIGN t_display.qty-transfered:FORMAT IN BROWSE {&browse-name} = ">>>>>9.999":U...
  6. S

    Error code 148

    Can anybody explain error code 148? ** Numeric format provides for no digits (148). From Progress Help file..... ** Numeric format <format> provides for no digits. (148) A numeric format must have at least one position that represents digits of the number. For example, the format...
  7. S

    Multiple Selection Browse

    Oliver, Thanks for staying with me on this one. I have not given up yet. I have however, reverted back to a static browse and dynamic query. This works. I still would like to hear from anyone, whom as got this to work. If anyone else can shed any light on this matter I would...
  8. S

    Multiple Selection Browse

    Can I assume that due to the lack of replies that I was right...... There is no way of using a dynamic query with a dynamic browse to use multiple selection, using num-selected-rows and fetch-selected-row(x). ? I look forward to anyones suggestions on this matter. Regards. Steve.
  9. S

    Multiple Selection Browse

    ref: multiple select browse Olivier, I tried your variation, however I do not want to create a temp-table for my browse, because of the number of records involved. My orginal problem is with dynamic query & browse and to be able to select multiple items using ctrl & mouse or Shift & mouse...
  10. S

    Multiple Selection Browse

    There have been many threads about the use of multiple selection browses, however I have never seen a working example posted here. I am using Progress 9.1D05 on NT. I have a dynamic query attached to a dynamic browse that is defined as multiple select. I use the normal method of using...
Top