CALL "W$HINT" USING hintText x y [timeout] |
hintText | PIC X(n) | Specifies the text to be shown in the hint box. It can include HTML tags for text formatting. |
x | any numeric data item | Specifies the x coordinate where the hint box must be shown. The value is expressed in cells. |
y | any numeric data item | Specifies the y coordinate where the hint box must be shown. The value is expressed in cells. |
timeout | any numeric data item | Specifies how many hundreds of seconds the hint box must stay on video. If passed, this parameter overrides the iscobol.gui.hints_on and iscobol.gui.hints_off settings. The user can close an hint before the timeout expires by pressing one of these keys: • F1 to F24, • PAGE-UP or PAGE-DOWN • arrow keys • HOME • END • ENTER • ESCAPE • TAB |
procedure division. main. call "w$hint" using "Download completed", 2, 2, 200. |