Search results

  1. Stefan

    Answered Some programs returning "Unable to run Web object" on new server

    You are aware that OpenEdge 11.7.4 was the first release of 11 for which Windows 2019 server was certified? You are aware that OpenEdge 11.3 was retired in 2016? what is in your WebSpeed agent log? I think you will also get an unable to run if for example your code was compiled against a...
  2. Stefan

    Question How to increase decimal limit?

    The /default/ for decimals is 10.
  3. 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.
  4. 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...
  5. Stefan

    if ambig workaround

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

    if ambig workaround

    Try showing some basic code that demonstrates your problem, ProgressAblDojo is great for showing running code.
  7. 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.
  8. 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...
  9. 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...
  10. Stefan

    adecomm/_oscpath.p

    https://github.com/progress/ADE/blob/release-11.7.x/adecomm/_oscpath.p
  11. 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...
  12. 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.
  13. 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
  14. Stefan

    Coding styles.

    if chStringValue > '' then ...
  15. 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.
  16. 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.
  17. 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
  18. 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...
  19. 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
  20. 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?
Back
Top