Where do I specify the "MIN-SIZE" in the OE Architect

Dear All,

Need your help.

I am working in OE 10.2A (Architect - using .Net Framework) and getting the following error

"Could not find class or interface lib.test. (12886)"

when I instantiate a class. The KB suggests that "As a workaround, compile all the classes without the MIN-SIZE option".

My question is where can I specify this "MIN-SIZE" option in OE Architect.


The following is the link to the KB article.

http://knowledgebase.progress.com/articles/Article/P178408

Thanks
Joel
 

SergioC

Member
Hi Joel, this is a option of compile statement:

Code:
COMPILE { procedure | VALUE ( expression ) }
  [ ATTR-SPACE [ = logical-expression ] ]
  [ SAVE [ = logical-expression ] 
     [ INTO { directory | VALUE ( expression ) } ]
  ]
  [ LISTING { listfile | VALUE ( expression ) } 
     [     APPEND [ = logical-expression ] 
        |  PAGE-SIZE integer-expression 
        |  PAGE-WIDTH integer-expression 
     ]
  ]
  [ XCODE expression ]
  [ XREF { xreffile | VALUE ( expression ) } 
     [ APPEND [ = logical-expression ] ]
  ]
  [ STRING-XREF { sxreffile | VALUE ( expression ) } 
     [ APPEND [ = logical-expression ] ]
  ]
  [ STREAM-IO [ = logical-expression ] ]
  [ LANGUAGES ( { language-list | VALUE ( expression ) } )
     [ TEXT-SEG-GROW = growth-factor ] ]
  [ DEBUG-LIST { debugfile | VALUE ( expression ) } ]
  [ PREPROCESS { preprocessfile | VALUE ( expression ) } ]
  [ NO-ERROR ]  [ V6FRAME [ = logical-expression ]
     [ USE-REVVIDEO | USE-UNDERLINE ] ]
    [ [B][COLOR=#ff0000]MIN-SIZE [ = logical-expression ] [/COLOR][/B]]
[ GENERATE-MD5 [ = logical-expression ] ]

Regards.
 

Stefan

Well-Known Member
In your OE Architect folder look search for _idecompile.p (on 11.1 its located in c:\progress\developerstudio3.6\eclipse\plugins\com.openedge.pdt.project_11.1.0.00\runtime\_idecompile.p).

I think this source handles any compiling done.

But: MIN-SIZE is not used, so it would seem that any r-code compiled by OE Architect does not match the knowledge base cause.
 
Top