Consultor Eletrônico



Kbase P112618: How to generate .off files without using workshop
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   19/01/2006
Status: Unverified

GOAL:

How to generate .off files without using workshop

FIX:

The following code can be used to generate .off files


DEFINE VARIABLE p_htmlfile AS CHAR INIT "cust.html". /* cust.html is the html file*/
DEFINE VARIABLE cExt AS CHAR.
DEFINE VARIABLE scrap AS CHAR.
RUN adecomm/_osfext.p (p_htmlfile, OUTPUT cExt).
IF cExt eq ".htm":U OR cExt eq ".html":U THEN DO:
RUN webutil/_genoff.p (p_htmlfile, OUTPUT scrap).
END.