Recent content by razmig

  1. R

    Popup Menu

    Hi Sebouh, Yes you can add items dynamically. Try this: The main definition of the menu, containing a single item at first. DEFINE MENU POPUP-MENU-BROWSE-1 MENU-ITEM m_Menu1 LABEL "Menu1". ASSIGN BROWSE-1:POPUP-MENU IN FRAME DEFAULT-FRAME = MENU POPUP-MENU-BROWSE-1:HANDLE...
  2. R

    "Check Syntax" error in OpenEdge Architect

    Yes, I have used "USING" without any problems. But, the issue is in defining the class name, where USING does not have any effect. Instead of writing: CLASS path.to.class.ClassName: END CLASS. I would like to write: CLASS {&CLASS_ROOT}.ClassName: END CLASS. I cannot use "USING" at this...
  3. R

    "Check Syntax" error in OpenEdge Architect

    I am using preprocessors while defining class names: Example: &GLOBAL-DEFINE CLASS_ROOT path.to.class CLASS {&CLASS_ROOT}.ClassName: ... While working in the procedure editor, "Check Syntax" does not give any errors, and I can run the class without any problems. But, in the...
  4. R

    Num records in table

    The ideal method would have been reading the record count information from the system tables, similar to other databases like MySQL, PostgreSQL. I checked the _File and some other "hidden" tables in Progress, but it seems there is no such information, although I am convinced there should be...
Top