Search results

  1. P

    How to use font after creating it at runtime

    Hello there! I tried it but it will get the wrong font...
  2. P

    How to use font after creating it at runtime

    Hi there! Yes i do, my ini file has 248 fonts and in the code that it's in the post, i'm trying to create a new one (number 249) and use it at runtime. The problem is i can only do that if i re-start my session (after creating said font). But i don't want to re-start my session. I'm trying to...
  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 How to send CTRL-V to a .NET control

    Hi there. Have you tried invoking the event itself?
  5. P

    Browse field losing focus

    Hey there! Try removing/commenting the trigger and try to double-click the browse the same way. If it still loses focus then there's probably nothing wrong with the trigger. Let us know how it goes
  6. P

    Question Define trigger for all tables

    It is, thank you Patrice!
  7. P

    Question Define trigger for all tables

    Hey Tom! My plan is implementing this "system" in 130 clients. The way i tought would only require max 2 minutes per client (replace a file and recompile another). And if I ever wanted to add specific logging messages and do anything extra (that wasn't planned) or improve my logs it would be...
  8. P

    Question Define trigger for all tables

    The record i want to create in this trigger is a kind of log. Something that will alow to track everything a user does but only developers have access to it. For example: I update table A. The trigger "write" of table A will create record on table x, saving all information necessary to track and...
  9. 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...
  10. P

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

    This usually happens in testing, and I wanted to prevent those errors before shuttding down my app. Today the program would crash and it would close my application.
  11. P

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

    I can but i would need to do that in more than 1000 programs in my company alone... I was trying to find a way to go around that...
  12. 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...
  13. P

    Question Show dialog behind main window

    It would be the client call, not mine. This 'bug' can also be achieved in a slow server/pc with around 100 records. In a fast computer (like mine) works as intended. But if I load 10k records (also in a fast computer) then I can replicate it.
  14. P

    Question Show dialog behind main window

    Hi there! I'm using a type of .net object (Telerik winforms) and it seems to have some bugs that only happen when used with progress based applications. Since the support really can't help much since they only support in several languages EXCEPT progress 4gl then i must "fix" it. I already fixed...
  15. 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...
  16. P

    Answered Run non-existant program without error

    3 guys i talked with found the following solution. Thank you for the help anyway! @TomBascom unfortunately that would not be an option since there are a lot of clients andsome of them have really big propaths. Even trimming the garbage out would take a lot of time and it wouldn't be effective...
  17. 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...
  18. P

    Error Error in Consuming Service (v11.3.3)

    Thank you Cecil! That worked like a charm! Have a great day!
  19. 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...
Top