Search results

  1. B

    Like dynamic-function , cane we create

    DEFINE VARIABLE {1} AS CHARACTER NO-UNDO. ASSIGN {1} = 'ttt'. MESSAGE {1} VIEW-AS ALERT-BOX INFO BUTTONS OK. this cod will not work in PROGRESS Procedure Editor Version 9.1D09 │...
  2. B

    Like dynamic-function , cane we create

    Like dynamic function is there any method to create variable whose name is value of another variable. eg. I have to do like this.. is it possible ? define variable m_var as character init "new_var". define variable string(m_var) as integer.
  3. B

    How to pass whole array to function?

    Hi, I try to pass an whole array to a function but it wont work, how to pass an whole array to the function? FUNCTION fun_name RETURNS LOGICAL (INPUT m_var AS CHARACTER EXTENT 10 ): IF m_var[5] = "hi" THEN RETURN YES. RETURN NO. END. DEFINE VARIABLE m AS CHARACTER EXTENT 10 INIT...
  4. B

    how to define and use multi dimensional array (extent)

    could u help me ? how to define and use multi dimensional array (extent)
  5. B

    validating date field

    HELP ME i like to validat date field... for that i declare it as character and validating it i found this type of error. for '12/712/00' input it working DEFINE VARIABLE d AS DATE FORMAT "99/99/9999" NO-UNDO. ASSIGN d = DATE('12/712/00') no-error . IF ERROR-STATUS:ERROR...
  6. B

    How to get run time errors

    Dear RKR Thank you very much for your instant solution, it is very useful for me
  7. B

    How to get run time errors

    how to handle run time errors, and display user defined message for example i want to validate a date value, i declare it as character and validate. DEFINE VARIABLE m_date AS CHARACTER INIT '10/r3/00' NO-UNDO. DISP DATE(m_date). **invalid date input.(85) " how to handle these type...
  8. B

    Adding fields to temp table

    hw do i add fields to a temp table after it has been defined with some fields . I am working in PROGRESS Procedure Editor Version 9.1D09 POSSE Version 2.0
  9. B

    Adding Fields to table

    hw do i add fields to a temp table after it has been defined with some fields .
  10. B

    upload datafiles to mfg/pro through PROGRESS

    hello, I need a help that " how to upload datafiles to mfg/pro database through PROGRESS 4GL" .
Back
Top