Integrate Prolint on Open Edge 11.5

Hi all,
Can somebody help me with the steps for using Prolint in OpenEdge 11.5 ?

Thank you !


Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

Prolint in OpenEdge 11.5

I recently successfully installed prolint on OpenEdge 11.5.

I followed the installation instructions for Prolint on http://www.oehive.org/node/232. They are correct.

I couldn't get it working with ActiveX. So I need to use LOGWIN8.W (older version) instead of LOGWIN.w.

The problem I encounter, was not related to the installation instructions and it took me a while to figure it out. The assemblies which I downloaded were blocked on my system. I had to unblock them in Properties for each assembly.

Also, there is a program called core/dlc-version.i.
It was not ready to work in 11.5.
I changed the code in core/dlc-version.i to:

/* Which (main) version of Progress are we running? */
&GLOBAL-DEFINE dlc-version INTEGER(ENTRY(1,PROVERSION,'.'))

/* Is this session running in GUI, ChUI or Batch?
This defines which outputhandlers are supported, and some more */
{&_proparse_ prolint-nowarn(varusage)}
DEFINE VARIABLE SessionWindowSystem AS CHARACTER NO-UNDO.
IF SESSION:BATCH-MODE THEN
SessionWindowSystem="".
ELSE
SessionWindowSystem=SESSION:DISPLAY-TYPE.