Function RealDialog displays a dialog box which requests the user to enter a REAL value. RealDialog automatically screens for valid numeric input.
FUNCTION RealDialog(
request : STRING;
default : STRING): REAL;def vs.RealDialog(request, default):
return REAL| Name | Type | Description |
|---|---|---|
| request | STRING | Dialog user prompt string. |
| default | STRING | Default value for input field. |
RealValue:=RealDialog('Enter a real value:','0.00');realValue = vs.RealDialog('Enter a real value', '0.00')Availability: from All Versions