AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / Gestión de lenguajes externos / Funciones Objeto
  • Notes
  • File table
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
Inserts an element into a table at a given position.
Ejemplo
// En C
APPELWD("Table,Insere,TableProd,10=%s",Ligne);
// En Pascal
APPELWD('Table,Insere,TableProd,10='+Ligne);
// En VB
call APPELWD("Table,Insere,TableProd,10="+Ligne)
Sintaxis
Table,Insert(<Table name> , <Subscript> , <Row value>)
<Table name>: Character string
Name of the table to use.
<Subscript>: Character string
Index of the element in the table.
<Row value>: Character string
Value of the row to insert.
Observaciones

Notes

  • After Table,Insert, the table is not in edit. To perform an input in the table, you must call Screen,Input.
  • If the table contains several columns, the columns must be separated by the numeric value of [TAB] (binary code 9):
    • Example in C:
      APPELWD("Table,Insere,TabCli,14=DUPOND\tJean");
    • Example in Pascal:
      APPELWD('Table,Insere,TabCli,14=DUPOND'+#9+'Jean');
    • Example in VB:
      call APPELWD("Table,Insere,TabCli,14=DUPOND"+CHR$(9)+"Jean")

File table

  • For a table based on a data file, the record is not inserted into the file, you must call Table,Save.
  • To modify the file associated with a table, don't use the HAdd function: use functions Table,Insere and Table,Save.
Versión mínima requerida
  • Versión 14
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 21/09/2024

Señalar un error o enviar una sugerencia | Ayuda local