Search results

  1. P

    unix script

    thanks for you
  2. P

    unix script

    the unix script which is in one seperate file but i want to call that script file inside a procedure file it will do some task. any one can help me?
  3. P

    Tool to rewrite Progress source code in standard form

    how do i use this with my program ? when i try to run with my program my file is getting zero size. can you give one example?
  4. P

    About progress

    sorry by mistake that happen
  5. P

    About progress

    what does meaning of progress 4gl? is it fourth generation? or which generation language is this?
  6. P

    progress language meaning

    what does meaning of progress 4gl? is it fourth generation? or which generation language is this?
  7. P

    Report xml

    <?xml version="1.0" ?> <ReportData> <Table Name="Customer"> <Data> <CustNum>1</CustNum> <Country>USA</Country> <Name></Name> <Address>276 North Drive</Address> <Address2></Address2> <City>Burlington</City> <State>MA</State> <PostalCode>01730</PostalCode> <Contact>Gloria Shepley</Contact>...
  8. P

    How do i read xml file

    RUN pLoadDataFromXml. /******************************Load the data from xml*********************/ PROCEDURE pLoadDataFromXml: /* *************************** Definitions *************************** */ DEFINE VARIABLE xhDoc AS HANDLE NO-UNDO. DEFINE VARIABLE xhReport...
  9. P

    How do i read xml file

    REPEAT iReportCounter = 1 TO xhReport:NUM-CHILDREN: lReportCheck = xhReport:GET-CHILD(xhColumn,1). IF NOT lReportCheck THEN LEAVE. REPEAT iColumnCounter = iReportCounter TO xhColumn:NUM-CHILDREN: lColumnCheck = xhColumn:GET-CHILD(xhField,2)...
  10. P

    How do i read xml file

    - <ReportData> - <Column> <Field datatype="integer" format=">>>>9" label="Cust Num" name="CustNum" /> <Field datatype="character" format="x(20)" label="Country" name="Country" /> <Field datatype="character" format="x(30)" label="Name" name="Name" /> <Field...
  11. P

    How do i read xml file

    i am using 10.2
  12. P

    How do i read xml file

    How do i read data from xml file can any one help to me?
  13. P

    Analye

    Can any one tell .... How do I Analyze procedure file and include files then i need to decide these are the internal procedure or functions are i need to modify
  14. P

    procedure

    Hi, Is there any limit how many internal procedures or function in one procedure file?
  15. P

    string sort

    Thanks , I also did same way
  16. P

    string sort

    How to sort this string DEFINE VARIABLE cStr2 AS CHARACTER NO-UNDO FORMAT "x(70)" INIT "dd,ggg,g,f". i want to sort this string. can any one help me?
  17. P

    How to get all internal procedure names which are in one procedure file

    How do i use INTERNAL-ENTRIES? Can u give sample code
  18. P

    How to get all internal procedure names which are in one procedure file

    can any help me? i want to get all internal procedure names which are in one procedure file.
Top