Search results

  1. P

    Question Change forecolor of Combo-box

    Hello! I was trying to change the forecolor of the object "combo-box" but i wasn't able to. I did found that if i change the name of the file "prowin.exe.manifest" (located in the bin folder) the objects change the color as intended but the object version used in my company program becomes far...
  2. P

    Question How to get current buffers from a handle

    Hello! Is there a way to get the current buffers (temp-tables and tables) from program X just by using his handle in program Y? I know i can create a method in program X that iterates the buffers and returns them but i want to be able to do that dynamically without having to edit thousands of...
  3. P

    How to use font after creating it at runtime

    Hey guys. The problem is pretty simple. I'm trying to use a font after creating and i keep getting the same error and i don't know why: Can anyone spot the error in the following code? DEFINE TEMP-TABLE tt-test NO-UNDO FIELD oui AS CHAR FIELD croissant AS CHAR. CREATE...
  4. P

    Question Define trigger for all tables

    Hi there! I wanted to ask if there's a way to create a trigger for all tables ("write" for example). I was thinking on using the following code in a persistant procedure: ON WRITE OF Customer DO: END. But I don't want to have to have a block of code for each table. Is there a way to do the...
  5. P

    Question Run non-existant program in a existing program without error

    Hey there! I already posted a similar question a while back but I came back with a better one... How could I catch an error on a program without editing that program? I added 3 attachments (3 .p ). I want to be able to run the custom1.p and press the button that runs custom2.p that then runs...
  6. P

    Question Show dialog behind main window

    Hi Guys! I wanted to do the following, but behind the current program/window: DEFINE FRAME X WITH VIEW-AS DIALOG-BOX TITLE "":U FONT 4. VIEW FRAME X. ASSIGN FRAME X:X = 0 FRAME X:Y = 0 FRAME X:WIDTH = 0...
  7. P

    Answered Run non-existant program without error

    Hello guys! I wanted to ask if there's a way to run a program and that program ends up not existing and the program shows a message saying that BUT it doesn't break like the following code does: DEFINE VAR temp-hand AS WIDGET-HANDLE. DEFINE BUTTON make-btn LABEL "Make new button". DEFINE FRAME...
  8. P

    Error Error in Consuming Service (v11.3.3)

    Hey there! Some weeks back, this site 'https://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml' passed from "http" to "https" so I was tasked with fixing the original code so it would work in every client. I managed to do so, but i realised that the code wasn't compatible with some of the...
  9. P

    Error SOAP - POSTMAN to ABL/4GL CODE

    Hi there! I have a SOAP request in my postman that works perfectly However, when I try to convert it to ABL/4GL code it doesn't work. I'm 100% doing something wrong but i can't seem to find it. I already talked to some colleagues of mine but nobody seems to find the problem. I used the...
  10. P

    Resolved DataSet on Class ERROR

    Hello there! I used a progress tool to convert a xml file to a .i (temp-tables + dataset). After doing it, i tried reading a xml file with data and export it again to see if everything was as expected and it was. However, when i referenced that include in a class i get the following error...
  11. P

    Trigerring Progress 4GL Triggers from Java Data Update

    Hello! I've been developing Java code with the purpose of creating an API to be used by my company clients. I reached a point where i need to create a POST and this particular POST is supposed to apply certain changes to a table. This table has some triggers defined in his table definition...
Back
Top