ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Controls, pages and windows / Control functions
  • Limitations
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Reinitializes:
  • all controls found in the current window or in the current page (including the groups of controls, the supercontrols, the popups and the internal windows).
  • the controls found in a group of controls, a supercontrol, a popup, an internal window or an internal page.
Example
// Add a customer
ScreenToFile()
HAdd(Customer)
// Reinitialize controls to enter a new customer
Reset(True)
Reports and Queries
// Reinitialize controls in the "SC_Customer" supercontrol
// The list box, combo box, table and looper controls of this supercontrol 
// will keep their current content.
Reset(SC_Customer, True)
Syntax

Reinitializing all the controls in the current window or page Hide the details

RESET([<Management of Special controls>])
<Management of Special controls>: Optional boolean
  • True:
    • Edit controls and Static Text controls are reinitialized to their initial value,
    • List, Combo, Table and RepeatString fields (file or memory) are not cleared or reset.. They keep their current content.
  • False (default value):
    • Edit controls and Static Text controls are reinitialized to their initial value,
    • the List, Combo Box control, Table and RepeatString "memory" fields are cleared and reset to their initial contents,
    • browsing List Box, Combo Box, Table and Looper controls are only reinitialized (they are not cleared).
Reports and Queries

Reinitializing all the controls found in a group of controls, a supercontrol, an internal window or an internal page Hide the details

RESET(<Element name> [, <Management of Special controls>])
<Element name>: Character string
Name of element whose controls will be reinitialized. Can correspond to:
  • Name of group of controls.
  • Name of supercontrol.
  • Name of internal window or page.
<Management of Special controls>: Optional boolean
  • True:
    • Edit controls and Static Text controls are reinitialized to their initial value,
    • List, Combo, Table and RepeatString fields (file or memory) are neither cleared nor reset.. They keep their current content.
  • False (default value):
    • Edit controls and Static Text controls are reinitialized to their initial value,
    • the List, Combo Box control, Table and RepeatString "memory" fields are cleared and reset to their initial contents,
    • browsing List Box, Combo Box, Table and Looper controls are only reinitialized (they are not cleared).
Remarks

Limitations

Reset does not reset the labels of the Button controls.
Component: wd300obj.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Video Reset
https://youtu.be/M-f668hriQ0

https://windevdesenvolvimento.blogspot.com/2019/04/dicas-2068-windev-mobile-webdev.html

// BTN_LIMPA_VARIAVEIS

Reset(GR_limpa)
amarildo
07 Apr. 2019

Last update: 12/06/2024

Send a report | Local help