Search results

  1. Stefan

    Question How to increase decimal limit?

    From the docs: I'm not sure about this balancing act, but if you add an additional > to the left of your decimal point, it creates extra space to show the < on the right.
  2. Stefan

    if ambig workaround

    I'm not seeing any outer-join in your code, so I'm not sure what you are trying to do. With a query you can tell if something is ambiguous when first-of does not equal last-of: DEFINE TEMP-TABLE foo NO-UNDO FIELD pk AS INTEGER FIELD t AS CHARACTER FIELD fk AS INTEGER // should...
  3. Stefan

    if ambig workaround

    Please put [ code ] [ /code ] tags around code.
  4. Stefan

    if ambig workaround

    Try showing some basic code that demonstrates your problem, ProgressAblDojo is great for showing running code.
  5. Stefan

    how to connect visual studio (connect string c# ) on a remote aix 6.1 progress version 9.1a with only 4gl

    You seem to be trying to connect using JDBC, based on this community post it would seem you need to use an ODBC client to have a chance of talking with the SQL processes.
  6. Stefan

    how to connect visual studio (connect string c# ) on a remote aix 6.1 progress version 9.1a with only 4gl

    The error is your reward for using ancient software. When a parameter is not recognized, Progress tries to help you and use the parts it does recognize. -S is known -ServerType is not, so you are given a "helpful" message about -e, the first letter of the unrecognized parameter. I am guessing...
  7. Stefan

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

    based on SendKeys Class (System.Windows.Forms) it seems to be: System.Windows.Forms.SendKeys:Send('^v') As to the initial could not locate method error - if you use the PDSOE class browser (CTRL+F12) and go to class System.Windows.Forms.RichTextBox and then select method ProcessCmdKey - it...
  8. Stefan

    adecomm/_oscpath.p

    https://github.com/progress/ADE/blob/release-11.7.x/adecomm/_oscpath.p
  9. Stefan

    App Server not starting

    Your Java stack trace starts with: Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) j com.progress.osmetrics.OSMetricsImpl.jniInitLibrary(Ljava/lang/String;)Z+0 j com.progress.osmetrics.OSMetricsImpl.initLibrary()Z+10 So maybe Admin Server Does not Start and Create...
  10. Stefan

    App Server not starting

    10.2B is not certified on Windows 11. 10.2B ships with Java 1.5 (1.5.0_11-b03). Java 5 was released in 2004. Java 8, which 11.7 uses seems to be supported on Windows 11.
  11. Stefan

    SC, BC ,TC balance

    google qad tc bc My first hit: So I would guess: SC = statutory currency TC = transaction currency BC = base currency
  12. Stefan

    Coding styles.

    if chStringValue > '' then ...
  13. Stefan

    Question Question on progress procedure mode

    Yes, even though the AVM is single-threaded and events will only fire based on actions, ie not automatically, pstimer can be used to sprinkle events around that occur while another program is running and which could do anything disruptive.
  14. Stefan

    Answered Performance issue with use of -cpinternal UTF-8 startup parameter

    As to the why: google site:progress.com utf-8 performance longchar INDEX and SUBSTRING functions are slow with UTF-8 client So yes, Jean-Christophe's solution should work.
  15. Stefan

    MFG/PRO Progress Where Clause Criteria syntax

    Constant date values are always a bit of a nuisance. Generally they always need to be MDY even if your session date-format is DMY. Safest to use the date function which prevents any ambiguity: where idm_mod_date >= date( 3, 31, 2023 ) // date function is always m,d,y
  16. Stefan

    Answered How to offload document generation to pasoe

    We replaced our com-handle Excel documents a long long time ago with office xml documents. These were replace a long time ago by xslx. An xslx is a zipped container of various xml documents which can all be generated by ABL and then zipped by a .Net class or a Linux zip. The same applies to a...
  17. Stefan

    Answered How to offload document generation to pasoe

    It seems like you are out of luck - COM objects on PASOE raise "CoInitialize has not been called." error
  18. Stefan

    Can you prevent a trigger programatically?

    No, with revert I mean revert override trigger, not transaction Why do you assume that it would loop endlessly? Have you tried it?
  19. Stefan

    Can you prevent a trigger programatically?

    If the trigger is overridable then you can use: on write of <table> override do: end. The override automatically reverts when the block is left. If you need to revert earlier, you can use: on wrote of <table> revert.
  20. Stefan

    Any-Printable - After Event

    I do very little GUI coding and this may be completely wrong with horrendous side effects, but it works: def var tg1 as logical no-undo. def var fi1 as char no-undo. define frame fr fi1 view-as fill-in tg1 view-as toggle-box . on any-printable anywhere do: apply lastkey to...
Back
Top