Recent content by okion

  1. O

    Error Message .. does not exist in promsgs file when 10.2b and 11.3 version installed on same machine

    Thx for the response... Yeah I know that you need to be carefully.... I did the same trick on another server for the 10.1c and 10.2b version and that works fine:) I did checked the registry(Winchar Startup, Startup, Work|Path and DLC ) and install directory if there was a wrong dlc or path...
  2. O

    Error Message .. does not exist in promsgs file when 10.2b and 11.3 version installed on same machine

    Hi there, I have installed progress 11.3 installed on a server where also a 10.2b version is installed. The 11.3 version gives errors when starting the databases and appserver. -Message number 16331 does not exist in promsgs file -OpenEdge\tty\adecomp.pl has an incorrect version (found 7...
  3. O

    Compile code 64 bit in batch mode on Windows 64-bit machine

    Hi there, We have a 64 bit progress environment (102B) on a server. Does someone know how to compile 64 bit in batch mode on a Windows 64-bit server? When i do it manually it works fine via: call %DLC%\bin\_progres -pf E:\Appserver\Parameter\appserver.pf -db xlt -ld xlt -H dbhost -S 2801 -N...
  4. O

    How to create a MS SQL schema holder via command line?

    Hello, Is it possible to create a MS SQL schema holder via command line? I need this because we want to build the progress every evening via a bat file. In that case we cannot use the Tools menu -> Data Administration -> DataServer -> MS SQL Server Utilities and select "Create DataServer...
  5. O

    How to initiate a HANDLE TO LONG INPUT-OUTPUT PARAMETER for API call

    The solution was very simple. I used a variable from the integer type and it worked. def var ret as integer. def var obj as integer. def var subObj as integer. run LlDomGetObject (ret, obj, "name", INPUT-OUTPUT subObj).
  6. O

    How to initiate a HANDLE TO LONG INPUT-OUTPUT PARAMETER for API call

    It is a list & Label dll from combit and there progress help files gives the definition: PROCEDURE LlDomGetObject EXTERNAL "{&CMLL15_DLLNAME}" ORDINAL 209 {&CMLL15_PERSISTENT}: DEFINE RETURN PARAMETER rc AS LONG. DEFINE INPUT PARAMETER hDOMObj AS LONG. DEFINE INPUT...
  7. O

    How to initiate a HANDLE TO LONG INPUT-OUTPUT PARAMETER for API call

    Hello, I use a external dll: PROCEDURE GetObject EXTERNAL "{&DLLNAME}" ORDINAL 209 {&PERSISTENT}: DEFINE RETURN PARAMETER rc AS LONG. DEFINE INPUT PARAMETER hDOMObj AS LONG. DEFINE INPUT PARAMETER pszName AS CHARACTER. DEFINE INPUT-OUTPUT PARAMETER phDOMSubObj AS...
  8. O

    License problem deployment Componentone vsprint8.ocx

    Hi there, Does anyone has experiences with the deployment of the vsprint8.ocx component? When I running my appserver with a licensed version it works fine. When I run it on another machine (Ie a customers machine ) i got a license error. It seems that only use regsvr32 of the ocx is not...
  9. O

    Using EnumPrintersA on 64 bit

    Hi there, Progress does have an example "How to use the EnumPrintersA". When I run it on 32 bit in works fine. But when I run it on 64 bit I get an error. I get an error : Put/Get functions not allowed on uninitialized memory. (2914) Does anyone know how to get it working on a 64 bit...
  10. O

    Having trouble with SQL Dataserver and buffer updates via the progress triggers.

    Hi there, Does anyone knows how progress handles buffers updates via the progress triggers when there is a SQL dataserver? Progress is sometimes confused when buffer updates are done via the trigger for different tables. When I update the trigger buffer and also another buffer and release that...
  11. O

    How can I use the REPLACE function to replace {1}

    From a database i got a message. That massage contains a {1} string. Does anyone know how to replace the {1} value. When i use: ASSIGN c_Text = REPLACE(c_Text, "{1}":U, "&2"). I get an error that parameter 2 must have a value...
  12. O

    Appserver does not clean memory after calling from .Net

    I found the solution. It seems to be that progress creates temp tables for dynamic stuff. See: ID: 18848 Title: "Excessive Temp-Table Defintions May Cause Error 40 or 14675" At the end of each procedure which retrieves the dataset there should be a delete object for each dataset. In my case...
  13. O

    Appserver does not clean memory after calling from .Net

    Hi there, We are calling the appserver via .NET There for I built a progress gate on the appserver. DEFINE INPUT-OUTPUT PARAMETER DATASET-HANDLE hp_Dataset. DEFINE INPUT-OUTPUT PARAMETER DATASET-HANDLE hp_Context. Main-block: DO: END. For the moment the main block is empty. Evertime i...
  14. O

    SESSION:PRINTER-NAME is empty when running appserver on server 2008

    Hi there, I have a problem with SESSION:PRINTER-NAME when the app is running on a server 2008. We use the Microsoft XPS Document Writer. The SESSION:PRINTER-NAME is empty by default. When its run's on server 2003 it works fine. The value is filled. The appserver uses the local system...
  15. O

    Database SQL monitor

    No, it isn't a read-only connection. At this moment the isolation level is READ COMMITTED. We also tried to empty the isolation level again, but that gives the same result. ( This was a hack, which helped us with previous locking problems) I think its a multi user problem. I did some test and...
Top