Search results

  1. B

    Answered Saving a structuref procedure take to much time

    I just tested it and it's the compilation of the program that takes time. Yes it's large but I build many temp-tables to output value in txt file. The aim is to output many data arround our production activity to add them to a power bi . This prorgam is batched. I did the choice of writing all...
  2. B

    Answered Saving a structuref procedure take to much time

    Yes @TomBascom no issue while saving with notepad, codium or vs code
  3. B

    Answered Saving a structuref procedure take to much time

    @Rob Fitzpatrick it is the 10.2B05 And I'm working with the AppBuilder :)
  4. B

    Answered Saving a structuref procedure take to much time

    @Rob Fitzpatrick in fact yes as i Said to Tom I did a mistake on progress version. I'm using 10.2b . Also by "saving" I mean the action of File -> Save File. @Stefan No custom procedure called upon the save action . Best Regards
  5. B

    Answered Saving a structuref procedure take to much time

    By 191Ko I mean Kilo Octet. 10.2B sorry for the confusing information . I'm running it on a virtual server near the cutting edge technologie on a Windows server 2012 r2 . And I only have issu saving this programm. I can saved much heavier programm in a blink of an eye. But this one not. I send...
  6. B

    Answered Saving a structuref procedure take to much time

    Hello guys, I'm working on a structured procedure that weithg around 191ko but it takes to much time to save. I'm running OE 10.02B (i know it's not the late version, we have planned to update to OE 11.7) Is there some key point that can caused this enormous time of saving my structured...
  7. B

    Question More ergonomic view

    Hello, @Jean-Christophe Cardot, actually I'm using the classic appbuilder to make ".w" file . @Cringer I understand. We want to try PDSOE . I make a test with the cloud by progress. But the language is C I think. So the way of starting it is different and I don't know if it will work well ...
  8. B

    Question More ergonomic view

    Hello, I want to make my window gui more attractive to my user. But I don't know exactly how. I would like to be closed to what you can do with windows graphical object like a browse with treeview like this: I don't know how to do it. If you have idea I will be glad to read them :) What is...
  9. B

    Answered IDE for progress

    Thank you :)
  10. B

    Answered IDE for progress

    I missed to ask the name of the plugin for eclipse. I didn't found it by the eclipse plugin store. Have i to paid for the plugin ? Do I have to download it from progress ? Best Regards to all
  11. B

    Answered IDE for progress

    Thank you everyone for you advice as always :)
  12. B

    Answered IDE for progress

    Hello everyone , have you got nice holidays ? So soon we will be able to upgrade to openedge 11.7 (the most updated version supported by our ERP vendor) . As we will do this update we are asking ourself witch IDE use and how? So what IDE are you using ? and Why ? Best Regards, -...
  13. B

    Progress Date function

    Did you tried to do : V_yearenddate = V_yearenddate + 1 .
  14. B

    Answered Delimiter option in EXPORT statement

    Thank you for your answer :)
  15. B

    Answered Delimiter option in EXPORT statement

    Hello, I was looking on the export statement and the delimiter option. Is there a way to put the delimiter value as variable: DEFINE VARIABLE toto AS CHARACTER . define TEMP-TABLE TT1 field myValue as character . toto = "," . FOR EACH TT1 no-lock : EXPORT DELIMITER toto TT1 . END...
  16. B

    Answered LEAVE VS RETURN

    Thank you for your wise advice as always @TomBascom
  17. B

    Answered LEAVE VS RETURN

    Thank you all for your answer. I understand what you mean. The way I was using was to leave a trigger/procedure when it's not needed to go further and avoid a series of "IF THEN DO" blocks . But maybe It was a mistake. Example bellow: DEFINE VARIABLE indnum AS CHARACTER NO-UNDO. /* If...
  18. B

    Answered LEAVE VS RETURN

    Hi guys, How are you ? While coding today I was asking myself what is best to leave a procedure or a trigger with some test, is it the LEAVE or the RETURN ? Example: DEFINE VARIABLE i AS INTEGER i = 1 . IF i = 1 THEN LEAVE . /* VS */ DEFINE VARIABLE i AS INTEGER i = 1 . IF i = 1 THEN...
  19. B

    Answered SYSTEM-DIALOG GET-FILE and FILTERS

    Thank you as always. I did work like this. A bit disapointed that progress didn't handle it all the way . But we have solution ;)
  20. B

    Answered SYSTEM-DIALOG GET-FILE and FILTERS

    Hi guys, Long time no see. I hope everyone is safe in this difficult time. I have a question about the filters of the system-dialog get-file. I know how to setup multiple filters staticly and dinamicly but don't know how to get the Filter selected by the user? Do you have any idea ? Best...
Back
Top