Search results

  1. B

    Answered Invisible File by Windows OS

    Thank you @TomBascom . After checking some kb and info from progress knowledge base, I know that for my version the limit size of DBI file is 1Tb. I also know that the growth could be caused by non using "NO-UNDO" on temp-table definition.
  2. B

    Question Query Performance Part 2

    Not at all and will try that thank you Stephan :)
  3. B

    Answered Invisible File by Windows OS

    So thanks to you we watched the IO caused we had the case again and it's the DBI file of a user that was growing at huge pace. So I will have to work on that.
  4. B

    Question Query Performance Part 2

    Hello, While doing a new project I was testing something on performance, there is two way I tried: I used CUSTOMER table as exemple, but for my case I have a table with 30 fields and only need 6 of them. Also I'm reading around 6K records. It appears that the traditionnal FOR EACH block was...
  5. 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
  6. B

    QUERY DYNAMIC

    Hello, Please could you indent your code. It's really hard to read. Best Regards, BobyIsProgess
  7. 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.
  8. 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...
  9. B

    4GL - Combobox in Frame

    ok I see. Don't hesitate
  10. B

    4GL - Combobox in Frame

    Are you working with progress developper studio or the app builder?
  11. 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
  12. 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
  13. 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...
  14. 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.
  15. 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 ?
  16. 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...
  17. 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...
  18. 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
  19. 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
  20. B

    Question difference between - better 2 use?

    Here is your answer: https://community.progress.com/s/article/17076
Back
Top