Recent content by altair

  1. A

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

    Ok thanks. So I'll go with EMPTY TEMP-TABLE ttChunck.
  2. A

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

    Ok thanks. So i need to delete the memptr once stored in the temp-table. What can I do with the BLOB field to ensure that its size is properly set to 0 (like the memptr). Is deleting the record enough to ensure that the BLOB is also deleted (cleaned up from memory) as well ? Thanks in advance.
  3. 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...
  4. A

    Compiling a cls USING itself

    Hi, The code of the cls USING itself is coming from Progress : OpenEdge.Net.pl, URI.cls I was trying to compile the sources code of the OpenEdge.Net library of OpenEdge 11.7 under 11.5 (I need to use OpenEdge.Net under 11.5 but there are bugs fixed in 11.7 but can not migrate to 11.7...
  5. 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...
  6. A

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

    Hi, I've tried to follow the WorkAround as per described in Defect PSC00337135 (put the attached "ClientSocketResponseWriter.cls" before OpenEdge.Net in my PROPATH) : it seems that the issue still happens, but less often (1 time out of 50), which is still not acceptable. It seems that many...
  7. A

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

    Hi, No, the payload (a plain text Json message base-64 encoded) is less than 1 Mb (4 Kb). The ContentLength of the oResponse object is of 1229.
  8. A

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

    Fixed for the code formatting, hope it is better now. I cannot get the Response message on my end : I am receiving an "oResponse" object (from OpenEdge.pl Execute () method) which is invalid, so at this point I can't do anything, excepts handling the error. I will see with the guys managing the...
  9. 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...
  10. A

    Question Setting Fgcolor Attribute Not Working Under Windows 7 Basic Theme

    Hi, Will be there any other impact if we delete (or rename) this .manifest file ? Looking forward on this, I've learned that there is a disableTheming option for the .manisfest which can be added used like this : <disableTheming>true</disableTheming> But untill now, I did not succeed to use it...
  11. 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...
  12. A

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

    No, I would like to have in the same screen / container (so whatever possible : ABL Window, ABL Dialog, .Net Form) both ABL widgets and .Net widgets/controls. Quite the same as of the OCX in the past, but here using .Net (and taking account of the constraints of .Net). (sorry, in my previous...
  13. A

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

    Ok, thanks. In my case, the existing .w screen is already included in an other bigger .w screen (a "container"), so maybe it can get more tricky than expected if I only replace the widget it self :/ Is it possible to mix ABL widget + ABL widget together in a .Net Form ? By replacing ABL...
  14. A

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

    Ok. I'll give up the SmartObject option. Don't want to go for an unspported feature for future development. Maybe .Net is the best / more future-proof option ? Is it possible to integrate a .Net widget in an existing classic ABL .w ? (OpenEdge 11.5.1, I can work with OpenEdge Developer Studio as...
  15. A

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

    Thanks, I was thinking SmartFrame was a container to accomodate / integrate SmartObject within classic Window / Dialog screen. No I've tried, and finally achieved to put the Smart Object inside my "normal" Dialog screen : I've added the 2 includes form ADM2, the adm-create-objects procedure...
Top