Search results

  1. A

    Question about Temp-table BLOB field containing MEMPTR => memory Clean Up ?

    Hello, I have a program in which I have a temp-table in which I store some MEMPTR variable, like this (simplified code) : DEFINE TEMP-TABLE tt-Chunk NO-UNDO FIELD Order AS INTEGER FIELD Data AS BLOB FIELD Size AS INT64 INDEX i IS PRIMARY UNIQUE fi-Order. DEFINE VARIABLE mData AS...
  2. A

    Compiling a cls USING itself

    Hi, I have an issue felated to compilation, classes and USING keyword / packages. I'm trying to compile a class located in a sub-directory. This class contains a "USING" phrase referencing to itself : /*testClasss.cls*/ USING testCompileUsing.Classes.testClass. CLASS testClass : END...
  3. A

    OpenEdge.Net.pl v11.5.1 Error 'X-NODEREF or X-DOCUMENT LOAD got an error: FATAL ERROR: file 'MEMPTR'

    Hi, I am using OpenEdge.Net.pl (Progress v11.5.1.006) for sending requests (base64-encoded Json into a SOAP envelopp) and getting randomly, from time to time, the following error : 'X-NODEREF or X-DOCUMENT LOAD got an error: FATAL ERROR: file 'MEMPTR', line '1', column '0', message 'invalid...
  4. A

    Question Setting Fgcolor Attribute Not Working Under Windows 7 Basic Theme

    Hi, I have an issue while using some GUI control in Progress I have a radio-set widget in , for which I would like to change the font color (rdo:FGCOLOR). Here is an example of source code of what we try to achieve DEFINE VARIABLE RDO-option AS WIDGET-HANDLE. DEFINE VARIABLE m-status...
  5. A

    Question Smartobject Into A Classic Dialog Window (non-smartwindow)

    Hi, I would like to know if it is possible to insert a SmartObject into a a "container" which is not "smart". In my case I would like to insert the pure4gltv SmartObject into a dialog (not a smartWindow). The dialog (a screen designed as a Dialog-Box) is an already existing screen. It...
  6. A

    Question Example Of Call To Webservice Using Openedge.net Library

    Hi, I will begin with a development of a program which will have to call a WebService (never worked with WebService before). I am looking for some simple example of working code that will call an existing WebService (can be anything) via the OpenEdge.Net library. Basically, I need to call the...
  7. A

    Question Implementing Transaction Management - Best Way ?

    Hi, I am looking for a method to implements transaction management (as in the DO TRANSACTION block keyword) in many programs. I need to do this because there some table lock wait issue on some programs. I have already found some technics to implements the locking, for example this kind of code...
  8. A

    Question Source Management Solution : Deployment / Build / Technical Impact Analysis ?

    Hi, I would like to know which tools exists to manage Progress source codes for an application, and which software/solution are you using ? Especially about : - Source code technical impact analysis coverage on source code ; - Packaging tool ; - Deployment tool ; - Build tool ; -...
  9. A

    Question [resolved]database Record Creation Logging With -clientlog

    Hi, I would like to know if there is a way to log automatically database record creation (the way as we already have for some -clientlog -logentrytypes startup parameters). I know it is possible with Temp-table (Progress KB - Is there a LOG-ENTRY-TYPE to log TEMP-TABLE statistics?) but for...
  10. A

    Question Any way to manage/track handle/object variable ?

    Hi, Hope you are well. I am new on this forum, and this is my first post. So if I do something wrong, please tell me :) For debugging purpose of my application, I was wondering if it there were any way to manage and track handle variable in Progress ABL. The reason why : this Progress error...
Top