AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Versión: 2026

Resultados de la búsqueda
Resultados 51-75 de 173 para archive
The archives
WINDEV, WEBDEV and WINDEV Mobile propose several WLanguage functions allowing you to compress and merge your files into archives...
zipFilter (Function)
Returns the list of archive formats supported by the current platform, in the format expected by the filter of fSelect.
zipSelectFile (Function)
Selects files from an archive.
The single-part and multi-part archives
Two types of archives are available...
Deploying a Java archive
Like for any application, WINDEV allows you to create a setup program for a Java application...
<zipArchive variable>.NbPartNeeded (Función)
Devuelve el número de partes de un tamaño determinado necesarias para dividir un archivo de una sola parte.
<zipArchive>.SelectFile (Función)
Selecciona ficheros de un archivo.
<zipArchive variable>.IsMulti (Función)
Devuelve el tipo de archivo: archivo de una sola parte o archivo de varias partes.
<zipArchive variable>.DeleteAll (Función)
Elimina todos los archivos de un fichero.
WDZip: Handling archive files
The compressed files found in an archive can be handled by WDZip...
<zipArchive variable>.OpenRAR (Función)
Abre un archivo existente en formato RAR.
<zipArchive variable>.merge (función)
Fusiona los distintos subarchivos de un archivo de varias partes para crear un archivo de una sola parte.
<zipArchive variable>.Exist (Función)
Determina si existe un archivo.
<zipArchive variable>Abrir (función)
Abre un archivo existente.
<zipArchive variable>Cerrar (función)
Cierra un archivo.
<zipArchive variable>.FileSize (Function)
Returns the size of one of the archive files (in CAB, RAR, WDZ, ZIP, 7z, gzip, TAR or TGZ (TAR.GZ) format):
  • the compressed size of the file.
  • the size of file before compression.
<zipArchive variable>.ListFile (Function)
Returns the list of files found in an archive.
<zipArchive variable>.ChangePath (Función)
Modifica la ruta almacenada de un archivo en un fichero (en formato ZIP, WDZ o 7z).
<zipArchive variable>.DeleteFile (Función)
Elimina un archivo de un fichero.
zipArchivedFile (Variable type)
The zipArchivedFile type is used to handle:
  • a file contained in an archive corresponding to one of the following formats: ZIP, CAB, RAR, WDZ, 7z, TAR, gzip or TGZ (TAR.GZ).
  • a file to add into an archive.
<zipArchive variable>.FindFile (Function)
Search for a file in an archive (CAB, ZIP, RAR, WDZ, 7z, gzip, TAR or TGZ (TAR.GZ) format).
<zipArchive variable>.Split (Función)
Divide un archivo en varios subarchivos de un tamaño determinado.
<zipArchive variable>.DeleteFileList (Función)
Elimina una lista de archivos de un fichero.
<zipArchive variable>.InfoTable (Función)
Devuelve las características de un archivo encontrado un archivo:
  • El nombre del archivo y su ruta de almacenamiento.
  • Tamaño inicial del archivo.
  • El tamaño comprimido del archivo.
  • Fecha y hora de creación del archivo.
  • Fecha y hora de modificación del archivo.
  • Fecha y hora de acceso al archivo.
  • Los atributos del archivo.
  • El modo de encriptación del archivo.
zipArchive (Variable type)
The zipArchive type is used to manipulate an archive file corresponding to one of the following formats: ZIP, CAB, RAR, WDZ, 7z, TAR, gzip or TGZ (TAR.GZ)..
<zipArchive variable>.ExtractDirectory (Función)
Extrae y descomprime automáticamente los archivos en un directorio en el árbol de archivos de un archivo a una ubicación física.
<zipArchive variable>.AddDirectory (Función)
Añade todos los archivos que se encuentran en un directorio y en sus subdirectorios a un archivo y los comprime.
<zipArchive variable>.ExtractAll (Función)
Extrae todos los archivos de un fichero y los descomprime.
<zipArchive variable>.ExtractFileList (Función)
Extrae y descomprime una lista de archivos encontrados en un archivo a una ubicación física.
<zipArchive variable>.ExtractFile (Función)
Extrae un archivo de un fichero y lo descomprime automáticamente en una ubicación física o en la memoria.
<zipArchive variable>.CurrentFile (Función)
Devuelve el nombre del archivo gestionado actualmente por las funciones de adición y extracción de archivos.
<zipArchive variable>.CreateExe (Función)
Crea un archivo comprimido autoextraíble como un archivo .EXE de 32 bits.
<zipArchive variable>.OpenCAB (Función)
Abre un archivo existente en formato CAB.
<zipArchive variable>.Create (Función)
Crea un archivo.
<zipArchive variable>.AddFile (Función)
Agrega y comprime automáticamente cualquier tipo de archivo en un archivo CAB, ZIP, WDZ, 7z, TAR, gzip o TGZ (TAR.GZ).
zipCreate (Example)
Usage example of the zipCreate function
<zipArchive variable>.EndAddingFile (Función)
Declara el final de la adición optimizada de una serie de archivos a un archivo comprimido.
Esta función solo está disponible en la versión por suscripción, a partir de WINDEV Suite 2025 - Update 3.
<zipArchive variable>.StartAddingFile (Función)
Declara el inicio de la adición optimizada de una serie de archivos a un archivo CAB, ZIP, WDZ, 7z, TAR, gzip o TGZ (TAR.GZ).
Esta función solo está disponible en la versión por suscripción, a partir de WINDEV Suite 2025 - Update 3.
<zipArchive variable>.AddFileList (Función)
Agrega y comprime automáticamente una lista de archivos en un archivo ZIP, CAB, WDZ, 7z, TAR, gzip o TGZ (TAR.GZ).
<zipArchive variable>.ExtractPath (Función)
Devuelve la ruta de un fichero encontrado en el archivo.
zipIsMulti (Example)
Usage example of the zipIsMulti function
zipMsgError (Example)
Usage example of the zipMsgError function
zipSplit (Example)
Usage example of the zipSplit function
zipOpenCAB (Function)
Opens an existing archive in CAB format.
zipExtractPath (Example)
Usage example of the zipExtractPath function
WDZip: Presentación
WDZip se utiliza para comprimir y agrupar sus archivos en archivos....
zipNbPart (Function)
Returns the number of sub-archives (parts) in an archive in CAB, RAR, ZIP, WDZ, 7z, gzip, TAR or TGZ (TAR.GZ) format.
zipDeleteAll (Function)
Deletes all files from an archive.
zipNbPartNeeded (Function)
Returns the number of parts of a given size required to split a single-part archive.
zipIsMulti (Function)
Returns the type of the archive: single-part archive or multi-part archive.
zipSize (Function)
Returns the size of the archive (in ZIP, RAR, CAB, WDZ, 7z, gzip, TAR or TGZ (TAR.GZ) format):
  • the size of all compressed files found in the archive.
  • the size of all files found in the archive before compression.
zipNbFile (Function)
Returns the number of files found in an archive (in CAB, RAR, ZIP, WDZ or 7z format).
zipOpenRAR (Function)
Opens an existing archive in RAR format.
zipMsgError (Function)
Returns the message associated with an error code on an archive.
zipClose (Function)
Closes an archive.
zipExist (Function)
Determines whether an archive exists.
zipOpen (Function)
Opens an existing archive.
zipCompressionLevel (Function)
Changes the compression level used when creating an archive in ZIP format or in 7z format.
zipMerge (Function)
Merges the different sub-archives found in a multi-part archive to create a single-part archive.
Funciones para archivos ZIP, WDZ, CAB, RAR, 7z, TAR, gzip y TGZ (TAR.GZ)
Funciones para archivos ZIP, WDZ, CAB, RAR, 7z, TAR, gzip y TGZ (TAR.GZ)
zipDeleteFile (Function)
Deletes a file from an archive.
zipListFile (Function)
Returns the list of files found in an archive.
zipFileSize (Function)
Returns the size of one of the archive files (in CAB, RAR, WDZ, ZIP, 7z, gzip, TAR or TGZ (TAR.GZ) format):
  • the compressed size of the file.
  • the size of file before compression.
zipChangePath (Function)
Modifies the stored path of a file in an archive (in ZIP, WDZ or 7z format).
WINDEVVersion (Function)
Returns the version number of the wdxxxvm DLL.
zipFindFile (Function)
Search for a file in an archive (CAB, ZIP, RAR, WDZ, 7z, gzip, TAR or TGZ (TAR.GZ) format).
zipPassword (Function)
Defines the password used to add files to the specified archive and to extract files from the specified archive (RAR, ZIP and WDZ format).
zipCurrentFile (Function)
Returns the name of the archived file currently handled by the functions for adding and extracting files.
zipInfoFile (Function)
Returns the characteristics of a file found an archive:
  • The name of the file and its stored path.
  • The initial size of the file.
  • The compressed size of file.
  • The date and time of file creation.
  • The date and time of file modification.
  • The date and time of file access.
  • The file attributes.
  • The file encryption mode.
zipDeleteFileList (Function)
Deletes a list of files from an archive.
zipSplit (Función)
Divide un archivo en varios subarchivos de un tamaño determinado.
zipExtractDirectory (Function)
Automatically extracts and decompresses files from a directory in the file tree of an archive to a physical location.
zipAddDirectory (Function)
Adds all the files found in a directory and in its subdirectories into an archive and compresses them.
zipExtractAll (Function)
Extracts all files from an archive and decompresses them.
zipOpen (Example)
Usage example of the zipOpen function
sInEntryQueue (Function)
Retrieves the number of pending bytes in the input buffer of a specified serial port or infrared port.
zipOpenRAR (Example)
Usage example of the zipOpenRAR function
zipExeCreationParameter (Tipo de variable)
El tipo zipExeCreationParameter permite definir toda la información necesaria para crear un archivo autoextraíble (archivo .EXE).
Este tipo de variable solo está disponible en la versión por suscripción, a partir de WINDEV Suite 2025 - Update 3.
zipClose (Example)
Usage example of the zipClose function
sEndEvent (Function)
Disables the detection of an event on a serial port.
zipExtractFile (Function)
Extracts a file from an archive and automatically decompresses it to a physical location or in memory.
zipExtractFileList (Function)
Extracts and decompresses a list of files found in an archive to a physical location.
zipCreateExe (Example)
Usage example of the zipCreateExe function
zipNbFile (Example)
Usage example of the zipNbFile function
zipNbPart (Example)
Usage example of the zipNbPart function
zipMerge (Example)
Usage example of the zipMerge function
sClose (Function)
Closes the specified serial port, parallel port or infrared port.
zipOpenCAB (Example)
Usage example of the zipOpenCAB function
zipExtractPath (Función)
Devuelve el ruta de un fichero encontrado en el archivo.
zipDeleteFile (Example)
Usage example of the zipDeleteFile function
zipSize (Example)
Usage example of the zipSize function
zipNbPartNeeded (Example)
Usage example of the zipNbPartNeeded function
zipAddFile (Example)
Usage example of the zipAddFile function
Funciones de archivos ZIP, WDZ, CAB, RAR, 7z, TAR, gzip, etc., (sintaxis con prefijo)
Funciones para archivos ZIP, WDZ, CAB, RAR, 7z, TAR, gzip y TGZ (TAR.GZ)
zipListFile (Example)
Usage example of the zipListFile function
sEvent (Function)
Branches an event on a serial port.
sEscape (Function)
Runs different functions that directly affect the bits of serial port, parallel port or infrared port, independently of the communication protocol.
zipChangePath (Example)
Usage example of the zipChangePath function
WDLog: Saving HFSQL data files
WDLog allows you to save all the HFSQL data files used by a WINDEV or WEBDEV application...
zipInfoFile (Example)
Usage example of the zipInfoFile function
Gestión de bases de datos en aplicaciones WINDEV Java
Este documento presenta los diferentes modos de acceso a bases de datos desde una aplicación WINDEV Java...
zipExtractAll (Example)
Usage example of the zipExtractAll function
zipFileSize (Example)
Usage example of the zipFileSize function
Gestión de puertos (puertos serie, puertos paralelos, puertos USB, etc.)
Varios dispositivos pueden ser gestionados directamente a través de una gestión de los puertos utilizados por estos dispositivos para comunicarse con el ordenador....
zipCreateExe (Función)
Crea un archivo comprimido autoextraíble como un archivo .EXE de 32 bits.
zipDeleteAll (Example)
Usage example of the zipDeleteAll function
sRead (Function)
Reads a character string in the entry buffer of the specified serial port.
zipAddDirectory (Example)
Usage example of the zipAddDirectory function
zipExtractFile (Example)
Usage example of the zipExtractFile function
¿Cómo crear un parche?
Recupera la lista de calendarios de Google asociados a la cuenta de Google especificada.
Extensions of files created by WINDEV, WEBDEV, WINDEV Mobile
The table below presents the main extensions of files created and supported by WINDEV, WEBDEV and WINDEV Mobile...
sParameter (Function)
Defines or modifies the parameters for configuring the specified serial port, parallel port or infrared port.
zipFindFile (Example)
Usage example of the zipFindFile function
Error handling WLanguage procedure called by zipExtractDirectory
WLanguage procedure ("Callback") called if an error is encountered when extracting files with zipExtractDirectory.
fAttribute (Example)
Usage example of the fAttribute function
sWrite (Function)
Writes a character string to the output buffer of the specified serial port, parallel port or infrared port.
fAttribute (Function)
Returns or modifies the attributes of a file.
<Destination>.CopyRecord (Función)
Copias:
  • el contenido del registro en curso (cargado en memoria) en el registro en curso de un archivo de datos.
  • el contenido de una variable de tipo Record en el registro en curso de un archivo de datos
WLanguage Procedure llamado por zipAddDirectory
WLanguage Procedure ("Callback") llamado al añadir archivos con zipAddDirectory.
Remote WEBDEV administrator: Backing up and restoring a WEBDEV site
The remote administration tool is used to manage the backups of your dynamic WEBDEV websites.
zipCreate (Función)
Crea un archivo.
fDirAttribute (Function)
Returns or modifies the attributes of a directory.
sOpen (Function)
Opens and initializes:
  • a serial port.
  • a parallel port.
  • an infrared port.
Procedimiento WLanguage llamado por zipExtractDirectory para gestionar las barras de progreso
Procedimiento WLanguage ("Callback") utilizado por zipExtractDirectory para gestionar el progreso de los archivos que se extraen del archivo.
GglGetDocument (Function)
Downloads a document from Google Docs.
WLanguage Procedure llamado por zipAddDirectory para manipular la barra de progreso
WLanguage Procedure ("Callback") utilizado por zipAddDirectory para gestionar el progreso de los archivos que se añaden al archivo.
Providing an image per DPI
On mobile, when displaying images, each device has its own physical size and its own graphic resolution...
Creating a Java project
WINDEV allows you to generate a Java application without even knowing the Java language...
LogBackupDirectory (Property)
The LogBackupDirectory property is used to manage the backup directory of log files.
<gglConnection variable>.GetDocument (Función)
Descarga un documento de Google Docs.
HCopyRecord (Function)
Copies:
  • the content of the current record (loaded in memory) to the current data file record.
  • the content of the Record variable to the current data file record.
Manipulating a database from a Java application
You can start developing your application as soon as the WINDEV project is defined as being a Java project...
Testing a Java project and compiling it
When your Java application is developed, you can run the test of the Java project and compile it before creating the archive...
zipCurrentFile (Example)
Usage example of the zipCurrentFile function
Aplicación Java y WINDEV
Una aplicación Java es una aplicación compilada íntegramente en Java...
Using WDMSG
The different steps for translating the project messages with WDMSG are as follows:
OLE DB provider for HFSQL
The OLE DB provider on HFSQL is used to access an HFSQL database (Classic or Client/Server) from an external software that manages the accesses by OLE DB...
Creating an SCM repository
To share a project via the Source Code Manager, a repository must be created...
zipEndAddingFile (Función)
Declara el final de la adición optimizada de una serie de archivos a un archivo comprimido.
Esta función solo está disponible en la versión por suscripción, a partir de WINDEV Suite 2025 - Update 3.
Procedimiento WLanguage llamado por la función zipAddFile
Procedimiento WLanguage ("Callback") utilizado por la función zipAddFile para seguir el progreso de los archivos que se añaden al archivo comprimido.
zipStartAddingFile (Función)
Declara el inicio de la adición optimizada de una serie de archivos a un archivo CAB, ZIP, WDZ, 7z, TAR, gzip o TGZ (TAR.GZ).
Esta función solo está disponible en la versión por suscripción, a partir de WINDEV Suite 2025 - Update 3.
Instalación de un sitio WEBDEV
Hay dos métodos para instalar un sitio WEBDEV en un servidor Unix...
fReportsAndQueriesDir( Función)
Devuelve:
  • el ruta completo del directorio para los informes y consultas personalizados. Este directorio corresponde al directorio de los informes y consultas de Visible por el usuario que los creó.
  • el ruta completo del directorio para los informes y consultas compartidos. Este directorio corresponde al directorio de los informes y consultas de Visible por todos los usuarios de la aplicación.
HChangeLogDir (Función)
Modifica la ubicación de los archivos de registro que corresponden a un archivo de datos HFSQL.
<Source>.ChangeLogDir (Función)
Modifica la ubicación de los archivos de registro que corresponden a un archivo de datos HFSQL.
WDDeploy features
WDDeploy is a tool used to easily deploy static or PHP sites...
zipAddFile (Función)
Agrega y comprime automáticamente cualquier tipo de archivo en un archivo CAB, ZIP, WDZ, 7z, TAR, gzip o TGZ (TAR.GZ).
Procedimiento WLanguage llamado por la función zipAddFileList
Procedimiento WLanguage ("Callback") utilizado por la función zipAddFileList para seguir el progreso de los archivos que se añaden al archivo comprimido.
Sending faxes with WINDEV and WEBDEV
To send faxes from an application or from a site, WINDEV and WEBDEV propose several functions allowing you to send faxes via the system fax server available in Windows XP and Windows 2000...
WDZip: Creación o modificación de un archivo comprimido
Esta página de ayuda explica cómo...
Declaración de compilación: COMPILAR IF
La declaración <COMPILAR SI> permite Compile( o no) un código WLanguage según una condición.
zipAddFileList (Función)
Agrega y comprime automáticamente una lista de archivos en un archivo ZIP, CAB, WDZ, 7z, TAR, gzip o TGZ (TAR.GZ).
ExeInfo (Function)
Retrieves the specified information about the version of an executable or DLL.
implementación en la casa
La implementación interna de Apple permite superar la mayoría de las limitaciones de los otros dos modos (App Store implementación y Ad Hoc implementación) y distribuir ampliamente una aplicación sin la necesidad de los dispositivos cliente de reference...
Extracción de mensajes añadidos o modificados desde la última extracción
Un proyecto ya fue creado y traducido....
Installing Android development tools
To develop Android applications with WINDEV Mobile, you must install...
Project Management Hub: Dashboard
The Project Management Hub groups all the details of the projects in a dashboard...
HCreateMovableReplica (Function)
Creates a movable replication.
Generating an Android application
The generation of a WINDEV Mobile application for Android groups all project elements (windows, code, etc.
Centro de Gestión de Proyectos: Gestión de incidencias
El centro de Gestión de Proyectos le permite mantener un historial de las incidencias encontradas en sus aplicaciones...
1. Ejemplos proporcionados con WINDEV Mobile
WINDEV y WINDEV Mobile le permiten desarrollar aplicaciones para tabletas Windows 10, Windows Phone 10 y teléfonos Windows 10 (Universal Windows 10 apps)...
2. Ejemplos proporcionados con WINDEV
Los ejemplos proporcionados con WINDEV tienen como objetivo ayudarle a conocer las funcionalidades de WINDEV.
Project Management Hub: Project Management
Project Management Hub: project management (view, create, etc.)
Tienda privada para aplicaciones móviles
Existen dos métodos para implementar aplicaciones...
HSynchronizeReplica (Function)
Synchronizes master and subscriber replicas: operations performed on one replica are transferred to the other.
"Panel"Explorador de proyectos
El panel "Explorador del proyecto" se utiliza para simplificar el entorno de desarrollo de WINDEV, WEBDEV y WINDEV Mobile...
Propiedades disponibles en Java
WINDEV le permite generar una aplicación Java sin siquiera conocer el lenguaje Java...
Tipos avanzados
Los tipos avanzados de WLanguage son los siguientes
Creating and generating an external component
A component must be created from a project containing all the elements required for the component...
New Features brochure - Version 2024: Common new features
New features in WINDEV/WEBDEV/WINDEV Mobile 2024 presented in the 2024 New Features brochure.
Mapa del sitio de la documentación de PC SOFT
Specific features of print in PDF format
Valor de las constantes para la API de 32 bits de Windows
Valor de las constantes para la API de 32 bits de Windows
New products brochure 28: Common new products
New features in WINDEV/WEBDEV/WINDEV Mobile 28 presented in the New Features brochure.
1
2
3
4
5
6
7
>