ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Adds a row as an internal window at the end of a Looper control populated programmatically.
Caution: To use this function, the "Use an internal window per row (LooperAddIW function)" option must be checked ("Content" tab of the control description).
Example
LOOP_Component.AddIW("IW_PROCESSOR", "i7", 2)
LOOP_Component.AddIW("IW_DISK", "SAMDATA", "SSD", 20 000 000)
Syntax
<Result> = <Looper control>.AddIW(<Internal window> [, <Parameter 1> [... [, <Parameter N>]]])
<Result>: Integer
Number of the added row.
<Looper control>: Control name
Name of the Looper control to be used.
<Internal window>: Character string
Name of internal window that will be used to create the row.
<Parameter 1>: Type corresponding to the parameter (optional)
First parameter that will be passed to the internal window. This parameter is passed to the "Global declarations" event of the internal window.
<Parameter N>: Type corresponding to the parameter (optional)
Nth parameter that will be passed to the internal window. This parameter is passed to the "Global declarations" event of the internal window.
Remarks
  • If one of the controls found in the internal window is anchored according to its content, the row height will be automatically adapted; otherwise, the row height will correspond to the height of internal window in edit.
  • The name of the internal window used for a row can be retrieved via the following syntax:
    <Looper control>[Row].Name
  • Parameters passed to the internal window: Parameters are retrieved in the "Global declarations" event of the internal window. Simply write the following line of code at the start of the event:
    PROCEDURE <Window name>(<Parameter 1> [, ...] [, <Parameter N>])
    For more details, see Window with parameters.
  • Tip: To get the number of the row used (click on a button in the internal window, for example), create an attribute in the Looper control and assign the result of <Looper>.AddIW.
  • Caution: A maximum of 1000 controls can be created (the number of controls per row depends on the internal window added).
    The following error occurs if more than 1000 controls are created: "Overflow: the looper contains more than 1000 controls in xxx rows".
Related Examples:
WM Sports Cross-platform examples (WINDEV Mobile): WM Sports
[ + ] This example is a sport application used to save your performances.
The application calculates the distance, the time, the average speed and the number of calories spent according to the sport.
The run is displayed on a map control via markers and an itinerary.

The example also includes a server part used to synchronize the user data.
This webservice is available in the WEBDEV "WW_Sports" example.
Component: wd280obj.dll
Minimum version required
  • Version 23
This page is also available for…
Comments
Click [Add] to post a comment