ShowPrint Property

Applies To
TextBox

Description
Gets or sets whether to display output from Print statements or not.

Usage

GGet Form.Control.ShowPrint, var  
GSet  Form.Control.ShowPrint, value  
Form
Name of a form or string variable containing a form name.
Control
Name of a control or string variable containing a control name. The control must exist in the specified form.
var
Boolean variable that will contain the value of the property.
value
Boolean expression for the new value of the property.

Values
False
True
Default: False

Remarks
When ShowPrint is True, then all output from Print statements executed in Spel tasks will be displayed in the text box. If multiple text boxes have ShowPrint set to True, then all of the text boxes will show the print output.

See Also
TextBox, ScrollBars

Example

GSet frmMain.txtStatus.ShowPrint, True