Search results

  1. M

    Question IIS6 Form Authorization in Webspeed

    I am using Webspeed for a web application. Some of the documents (pdf,doc) are stored in virtual directory location "Doc" . Direct access to the folder using url should be denied to anonymous users. If user login into the application then only he should be able to access the files stored in...
  2. M

    Question Protecting documents stored in virtual directory (IIS6)

    i am using Webspeed for a web application. Some of the documents (pdf,doc) are stored in virtual directory location "Doc" . Direct access to the folder using url should be denied to anonymous users. If user login into the application then only he should be able to access the files stored in...
  3. M

    How to call javascript & jsp in Progress 4 GL

    ..........
  4. M

    Syntax for "IN" or "NOT IN" in progress 4 gl

    Done Thanks... DEFINE TEMP-TABLE tt_mjs FIELD emp_name AS CHAR FORMAT "x(50)" FIELD region AS CHAR FORMAT "x(25)" . CREATE tt_mjs . ASSIGN emp_name = "MJS" region = "MH" NO-ERROR. CREATE tt_mjs. ASSIGN emp_name = "AKS"...
  5. M

    Syntax for "IN" or "NOT IN" in progress 4 gl

    WHEN SUBSTRING(country_code,1,5) = "India" OR WHEN SUBSTRING(country_code,1,5) = "China" Is it possible to use "In" statement similar to SQL in progress ? SUBSTRING(country_code,1,5) in ("India", "china")
  6. M

    How to copy all fields of a row in a table to a temp-table?

    DEFINE TEMP-TABLE tt_pj1_mstr LIKE pj1_mstr. FOR EACH pj1_mstr WHERE pj1_code="20000001" NO-LOCK: BUFFER-COPY pj1_mstr TO tt_pj1_mstr. END. FOR EACH tt_pj1_mstr NO-LOCK : DISPLAY tt_pj1_mstr.pj1_code tt_pj1_mstr.pj1_desc . END.
  7. M

    How to access javascript variable in Progress (Webspeed)

    How can i access javascript variable in Progress (Webspeed) ex. ' <SCRIPT LANGUAGE="JavaScript" type="text/javascript"> ' SKIP. ' document.getElementById("hdn_counter").value = "abc" ~;'SKIP . ' var t_empctr =document.getElementById("hdn_counter").value~;'SKIP . FIND...
Top