Search results

  1. H

    pass a parameter

    How can you pass a parameter to another window. par example: test1.w has : define variable param as character. I want to run the window test2.w and pass this variable. What should i do in test1.w and test2.w
  2. H

    Current Directory

    How can I get my current directory?
  3. H

    How to use a Procedure

    And if I have a file FormatNumber.p: Function FormatNumber FUNCTION FormatNumberToIngrammicro RETURNS CHARACTER (INPUT DateOrig AS DATE): DEFINE VARIABLE DateTechData AS CHARACTER. .... RETURN DateTechData. END FUNCTION. how can I call it in another function: ASSIGN.....
  4. H

    How to use a Procedure

    These things don't resolve the problem. I will explain it: I have a file test.p. This creates a tree of xml-elements. DEFINE VARIABLE hDoc AS HANDLE NO-UNDO. DEFINE VARIABLE hOrderRequest AS HANDLE NO-UNDO. CREATE X-DOCUMENT hDoc. CREATE X-NODEREF hOrderRequest. hDoc:CREATE-NODE(hOrderRequest...
  5. H

    How to use a Procedure

    I have a file, named CreateVersion.p. The content is as followed: PROCEDURE CreateVersion: ...... END PROCEDURE. My question is: How can I call this procedure from another file?
  6. H

    Problem: how to pass a Node (of XML) to a procedure

    I have a problem: I have to create an XML-document. I have several procedures, but i have to pass the current Node. Example: <Order> <Head> <...> </Head> <Body> -------------------------------------------------- This node was created as followed: DEFINE VARIABLE hBody AS HANDLE NO-UNDO...
Back
Top