Search results

  1. B

    Answered Question on menu and sub menu handle

    Hello, A question, I made popup menu in Browse widget: I code it that way in the RIGHT-MOUSE-DOWN trigger: DEFINE VARIABLE myMenu AS HANDLE NO-UNDO. DEFINE VARIABLE myItem AS HANDLE NO-UNDO. IF AVAILABLE TT1 THEN DO: /* Where TT1 is a temp-table in the browse open-query */ CREATE MENU...
  2. B

    Answered Multiple progspec.ini

    It's quite interesting and keep to close to make an upgrade plan :)
  3. B

    Answered Multiple progspec.ini

    When we do a test run for upgrading the software (not the database) we test all the process, it means to be able to: Create customer Create vendor create purchase order selling order and more, so all the process, but many parts of our software is sourced closed so
  4. B

    Answered Multiple progspec.ini

    What kind of automated test could we run if we based our model on the default database of progress? I'm a bit lost on how to build them.
  5. B

    Answered Multiple progspec.ini

    We already have one of our database that is on 11.7 and planned to try PDSOE on this server to see how well it will improve our dev life. After that we will see to upgrade every database we have in 11.7. Our editor only certify our ERP for 11.7 for now. I don't know if it's mandatory to test...
  6. B

    Answered Multiple progspec.ini

    Thank you for the tips. We are looking to have it. @Rob Fitzpatrick do you know if it's available for OE10.2B.05 ? I'm sure for OE 11. But not for OE10. Best Regards,
  7. B

    Answered Multiple progspec.ini

    Today we have nothing to version control our code. I planned on maybe implementing git with tortoize extention but not realy sure of the best pratice choice on this matter. Thank you for your time and answer :)
  8. B

    Answered Multiple progspec.ini

    Yes today we are 3 developper to work. So we have each one of us a personnalized folder for R&D dev and so we have personnalized "PROPATH" Like that we also have personnalized "recent file list"
  9. B

    Answered Multiple progspec.ini

    Hello, While standardising our way of working I just encounter a question about the progspec.ini file. In it we can setup things like working directories amongs other things. My question is about color for background & foreground, and for fonts. is it possible to have one progspec.ini for...
  10. B

    Question Non mandatory parameters

    it's seems to be very overkill. The POO would be more usefull I think :)
  11. B

    Question Non mandatory parameters

    Thank you @Stefan. I wasn't going to go this way, because right know I'm already the only one who is able to understand and do persistent procedure on a session level. And I'm trying to teach my colleges on it. But if the only solution is using class, I will do it :) Best Regards,
  12. B

    Question Non mandatory parameters

    Hello guyz, As I try with my team to standardize our code base, we would like to have a procedure that can have mandatory parameters and non mandatory parameters. I can't find a way to do it. Is it possible? Best Regards
  13. B

    Question Display HTML File

    While searching and thinking of my needs, I found that I don't need to go and navigate on the WWW, but only rendering HTML files. We are using them do the followings: - Create report with charts - Create web pages with button that make action on our database. I think I will be very limitted to...
  14. B

    Calling function from .NET WebBrowser

    @Cringer do you know if there is any proof of it working on app builder
  15. B

    Question Display HTML File

    I know that I will be limited on solution du to my openedge version. We already have on of our production site that is OE11.7 but we still need to upgrade all the others. I will take all the information and work something out :)
  16. B

    Question Display HTML File

    Thank you @Bounty . I well check it and make some feedback :^)
  17. B

    Question Display HTML File

    Hello, Actually we use the internet explorer OCX to display web pages on some "*.w" program. We are using web pages to do create some report or graphs. Do you know if there is any other way to do so ? We are on openedge 10.2B05 Best regards, BobyIsProgress
  18. B

    Answered Sucession of if else if with some weird behavior

    Also thank you to confirm that there is no issue with the structure but with the code itself :)
  19. B

    Answered Sucession of if else if with some weird behavior

    Thank you Osborne. I never thought that I could use the case statement this way. It's much neater in fact. I will try this way and see what goes on :)
  20. B

    Answered Sucession of if else if with some weird behavior

    Hello all, In one on my program I witness a weird behavior. I had a list of if else if statement like this: IF condition1 THEN error1. ELSE IF condition2 THEN error2. ELSE IF condition3 THEN DO: something3. error3. END. ELSE IF condition4 THEN error4. For more precision...
Back
Top