Recent content by Rafal

  1. R

    Attribs / triggers ...

    Hi You can use progress's viewer proobjvw. Rafal
  2. R

    design time

    Hi If all frames have this same parent and sequence of frame is good you can use something like this: ========================================= DEFINE VARIABLE w-frame AS WIDGET. /* max number of frame for example 6 */ DEFINE VARIABLE c-max_frame AS CHARACTER INIT "6". w-frame =...
  3. R

    Deleting Items from selection-list

    I had similar problem and now I use this to deleting items from selection-list select-1:LIST-ITEMS = "". I hope that my solution helps you. Rafal
  4. R

    output to client's printer

    Hi I use java script to print report. I have two frames FS_main and FS_menu This button is in FS_menu and I print report from FS_main <INPUT type=button value="Drukuj" onClick="top.FS_main.focus(); top.FS_main.print();" I hope that I help you. Sorry for my english.
  5. R

    Difference between Find and Find first.

    HI If you use FIND you can find a few records and AVAILABLE function return false but AMBIGOUOS (or something like this) function return true. It means that more than one records you find. FIND FIRST always find first record. If you have only one record which satisfy a conditions FIND and FIND...
  6. R

    Printing HTML

    Thank you but I found solution probably easier (for me of course). Maybe somebody will use it. I use OCX webbrowser and find method execWB. For print it look like this: def var c-p character. chCtrlFrame:WebBrowser:execWB(6,0,"",INPUT-OUTPUT c-p). Description these parametrs you can...
  7. R

    Printing HTML

    Hi I would like print HTML file from Progress. I try use OCX webbrowser but I don't know method to print. I think that somebody will have some ideas :). Rafal
Top