Search results

  1. B

    QUERY DYNAMIC

    You are not working with dynamic query but static one. They're changing at run time. You should read this part of the documentation to do what you want to do: https://docs.progress.com/fr-FR/bundle/openedge-abl-reference-117/page/CREATE-QUERY-statement.html
  2. B

    QUERY DYNAMIC

    Hello, Please could you indent your code. It's really hard to read. Best Regards, BobyIsProgess
  3. B

    Browse field losing focus

    You also have a part where your are repositioning your focus, just there: IF br-itens:QUERY:NUM-RESULTS > 0 THEN DO: IF br-itens:QUERY:NUM-RESULTS + 1 = linha THEN linha = linha - 1. br-itens:QUERY:REPOSITION-TO-ROW(linha). END.
  4. B

    Browse field losing focus

    Hello wich browse are you talking about in your code? Is it "br-itens" ? Because if it's him in your DBLCLICK triggers your are doing an open-query on him that could explain the lose of your focus: &ANALYZE-SUSPEND _UIB-CODE-BLOCK _CONTROL br-itens wWindow ON MOUSE-SELECT-DBLCLICK OF br-itens IN...
  5. B

    4GL - Combobox in Frame

    ok I see. Don't hesitate
  6. B

    4GL - Combobox in Frame

    Are you working with progress developper studio or the app builder?
  7. B

    4GL - Combobox in Frame

    You need to had more object to your frame like a button to do stuff after the user choosed a value in your combo box. But a question, why are you using a procedure file and not a window file (.w) It would be more easier for you
  8. B

    Answered Invisible File by Windows OS

    Hello @Rob Fitzpatrick , Thank you for your support on this matter. I'm glad in a way that progress seems not to be the root of it. Also what you tell me will help us to put down a procedure to follow if this issue where to happen again . Thank you again . I will marked it answered
  9. B

    4GL - Combobox in Frame

    Hello, Like this: DEF VAR belegStat as CHAR VIEW-AS COMBO-BOX INNER-LINES 5 LIST-ITEMS "offen", "arch" DROP-DOWN-LIST LABEL 'BelegStatus' NO-UNDO TRIGGERS: ON VALUE-CHANGED DO: MESSAGE SELF:SCREEN-VALUE VIEW-AS ALERT-BOX INFO BUTTONS OK...
  10. B

    Answered Invisible File by Windows OS

    They are only GUI client and no database or apps server. We have a server for each task: A database server A RDS serveur for production application And local install for othe user. Same on this side. Also it's the first time we had that.
  11. B

    Answered Invisible File by Windows OS

    This was unable too and the file wasn't there. As I said earlier I'm not sure that progress was the root of it. I'm just exploring the path and saerching if it happend to one of you ?
  12. B

    Answered Invisible File by Windows OS

    By invisible: - I mean that the folder c:\temp\progress\ weigthed around 60Go and more - When you cliked on the folder to enter it, there was no such file or sufficient number of small file to attaint this weight - They have tried we different tools to analyzed disk space and no such file was...
  13. B

    Answered Invisible File by Windows OS

    Hello Guys, We had a strange issue recently. We don't know if is a progress side issue or on windows side. There was an invisible file on a end user working directory that continue to grow endlessly around 60Gb and more. The issue was resolved by restarting the server. On this working directory...
  14. B

    How to sort columns in browse

    You will have to manage multiple indexes. One of our dev do it by working with the trigger "START-SEARCH" on browse widget
  15. B

    How to sort columns in browse

    It's strange, because the attribute you'r talking about is not part of the widget: https://docs.progress.com/fr-FR/bundle/abl-reference/page/BROWSE-widget.html
  16. B

    Question difference between - better 2 use?

    Here is your answer: https://community.progress.com/s/article/17076
  17. B

    Write to xml file

    Hello, You need to check that the buffer you are trying to copy is available with something like this: FIND tt1 WHERE your condition NO-LOCK NO-ERROR. IF AVAILABLE tt1 THEN DO TRANSACTION: CREATE tt2. BUFFER-COPY tt1 to tt2. END. Best Regards,
  18. B

    Answered Start PASOE detached

    Are you using by OS-COMMAND ? if yes you have SILENT and NO-CONSOLE option . Best Regards,
  19. B

    Question Query: how to change using a trigger (GUI)

    It's a good one. I would be curius to see the final result of the GUI :)
  20. B

    Question Query: how to change using a trigger (GUI)

    Whatever is your solution you will always have a space issue with this kind of work.
Back
Top