| **Navigation:**  [[introduction.htm|Language Reference]] > 13 - Built-in Functions >====== SHOW (write to screen) ====== | [[shortpath return short filename .htm|{{btn_prev_n.gif|Previous page}}]][[introduction.htm|{{btn_home_n.gif|Return to chapter overview}}]][[shutdown arm termination procedure .htm|{{btn_next_n.gif|Next page}}]] | | || {{newc7.jpg|NewC7.jpg}} **SHOW(** //x// ,//y// ,//string// **)** {{blk2blue.jpg|blk2blue.jpg}} | **SHOW** | Writes a //string// to the current window or report. | | //x// | An integer expression that specifies the horizontal position of the starting point, in dialog units. | | //y// | An integer expression that specifies the vertical position of the starting point, in dialog units. | | //string// | A string constant, variable, or expression containing the formatted text to place on the current window or report. | **SHOW** writes the //string// text to the current window or report. The font used is the current font for the window or report. **Example:** **MDIChild WINDOW('Child One'),AT(0,0,320,200),MDI,MAX,HVSCROLL** **          !window controls** **         END** ** CODE** ** OPEN(MDIChild)** ** DISPLAY** ** SHOW(100,100,FORMAT(TODAY(),@D3))        !Display the date** ** SHOW(20,20,'Press Any Key to Continue')  !Display a message** **See Also:** [[current target.htm|Current Target]]