browse to HTML code

mpowell

Member
The code for the browse to htm doesnt seem to work, am I doing something wrong?

DO WITH FRAME {&FRAME-NAME}:
{&OPEN-BROWSERS-IN-QUERY-{&FRAME-NAME}}
ll_ok = {&BROWSE-NAME}:SELECT-ROW(1).
lc_ligne = "" .
lh_browse = {&BROWSE-NAME}:HANDLE.
/*===*/

IF NOT VALID-HANDLE( lh_browse ) THEN RETURN "Ok":U.
lh_widg = lh_browse :FIRST-COLUMN.
IF NOT VALID-HANDLE( lh_widg ) THEN RETURN "Ok":U.

if i leave the if not valid-handle line in then i just get a demo table without the info from the browse.
If i comment out the line then the code works in that it scrolls through the browse but it does not output to the htm page.
Is there something I should be doing other than inserting a prowse on the page and calling the procedure?
Thanks Regards

Martin
 
Top