Search results

  1. P

    Question Change forecolor of Combo-box

    We already tried that but the problem of the object visual old version remains. Do you know about any other workaround?
  2. 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...
  3. 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...
  4. P

    How to use font after creating it at runtime

    Hello there! I tried it but it will get the wrong font...
  5. 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...
  6. 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...
  7. P

    Question How to send CTRL-V to a .NET control

    Hi there. Have you tried invoking the event itself?
  8. 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
  9. P

    Question Define trigger for all tables

    It is, thank you Patrice!
  10. 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...
  11. 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...
  12. 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...
  13. 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.
  14. 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...
  15. 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...
  16. 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.
  17. 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...
  18. 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...
  19. 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...
Back
Top