Recent content by patelspam

  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...
Back
Top