AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Administrar bases de datos / HFSQL / Funciones HFSQL
  • Example: Displaying the characteristics of a file in the trace
HListFile (Example)
Example: Displaying the characteristics of a file in the trace
WINDEVCódigo de Usuario (UMC) This example is used to display all the characteristics of the file in a trace window. Each characteristic is extracted from the result of HListFile by ExtractString.
// Displays the characteristics of a file in the trace
FileList is string
FileList = HListFile(hLstDetail)
 
// Retrieves the first file
FileList = ExtractString(FileList, 1, CR)
 
// Displays the logical file name
Trace("Logical name: " + ExtractString(FileList, 1))
// Displays the file abbreviation
Trace("Abbreviation: " + ExtractString(FileList, 2))
// Displays the file caption
Trace("Caption: " + ExtractString(FileList, 3))
// Displays the physical file name
Trace("Physical name: " + ExtractString(FileList, 4))
Versión mínima requerida
  • Versión 9
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 27/05/2022

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