Resets to zero (for a numeric control) or clears (for the other types of controls) the content of the controls found in the current window. The List Box and Combo Box controls may not be reset.
// In C
// Reset ALL the window controls to zero
CALLWD("Screen,Raz");
// In Pascal
(* Reset ALL the window controls to zero *)
CALLWD('Screen,Raz');
// In VB
' Reset ALL the window controls to zero
call CALLWD("Screen,Raz")
Remarks
- If 1 is specified as parameter, the content of the List Box and Combo Box controls will not be modified.
- If 1 is not specified as parameter, the content of the List Box and Combo Box controls will be reset to its initial value (defined in the WINDEV editor).
- To reset a List Box or Combo Box control to zero, use List,Delete.