ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Table functions
  • Use conditions
  • Characteristics of the row elements
  • Position of the new row
  • Limits: Maximum number of lines displayed
  • Adding images
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Adds a row in:
  • a Table control,
  • a TreeView Table control.
If the added row is the first row of the control, the added row becomes the current row.
Remarks:
Example
// Add "Moore" and "Vince"
// in the last row of the "TABLE_ProductTable" control
TableAddLine(TABLE_ProductTable, "Moore", "Vince")
Syntax
<Result> = TableAddLine(<Table control> [, <Element column 1> [... [, <Element column N>]]])
<Result>: Integer
  • Index of the added row,
  • -1 if an error occurred.
<Table control>: Control name
Name of the control to be used. This control can correspond to:
  • a Table control.
  • a TreeView Table control.
If this parameter corresponds to an empty string (""), the control to which the current event belongs will be used.
<Element column 1>: Type of associated column (optional)
Elements of the row that will be added to the specified control. Each element corresponds to a column of the control. The type of the added element must be compatible with the column type.
If none of these parameters is specified, an empty row is added to the control. For a data-bound control, the default values defined in the linked data file are taken into account.
<Element column N>: Type of associated column (optional)
Elements of the row that will be added to the specified control. Each element corresponds to a control column. The type of the added element must be compatible with the column type.
If none of these parameters is specified, an empty row is added to the control. For a data-bound control, the default values defined in the linked data file are taken into account.
Remarks

Use conditions

TableAddLine can be used on:
  • Table or TreeView Table controls based on a data file.
  • Table or TreeView Table controls populated programmatically.
  • single-selection or multi-selection controls.

Characteristics of the row elements

  • If you don't want to specify a value for an element, use an empty string ("") or 0 (depending on the column type).
  • If an element corresponds to the result of a calculation, enclose the numerical expression in brackets.
    For example:
    TableAddLine(TABLE_CalcTable, (53+29), (83-21))

Position of the new row

By default, the row is added at the end of the rows displayed by the control.
Special case:
  • If the control is sorted by TableSort, the added row is positioned in the control according to the current sort.
  • If the control is sorted by the user, the sort is ignored when inserting the row. The row is added at the end of control.

Limits: Maximum number of lines displayed

The maximum number of rows that can be displayed in a TreeView Table control or Hierarchical Table is limited only by available RAM (theoretical maximum: 2 billion rows).
However, we do not advise you to use large Table or TreeView Table controls for performance and user-friendliness reasons (time required to fill the control for example).

Adding images

To add an image to a Table or TreeView Table control:
    Note: To correctly display the added image, the column must be of type Image.
    Component: wd300obj.dll
    Minimum version required
    • Version 9
    This page is also available for…
    Comments
    Video TableAddline
    https://youtu.be/VzyIo0ra5C4
    amarildo
    21 Dec. 2018
    Exemplo TableAddLine
    //Vou Mostrar como criar tabela
    //Adicionando variavies

    TableAddLine(TABLE_Manual,EDT_Codigo,EDT_Nome)
    EDT_Codigo=0
    EDT_Nome=""
    ReturnToCapture(EDT_Codigo)

    http://windevdesenvolvimento.blogspot.com.br/2017/01/aula-1032-tabela-040-criar-tabela-via.html

    https://www.youtube.com/watch?v=plj3bvFu-vc
    De matos
    13 Jan. 2017

    Last update: 03/12/2025

    Send a report | Local help