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
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
Opens and runs a WINDEV project. The first project window is displayed and the input is automatically enabled in this window.
Ejemplo
// In C
CALLWD("Project,Account");
// In Pascal
CALLWD('Project,Account');
// In VB
call CALLWD("Project,Account")
Sintaxis
Project(<Project name>)
<Project name>: Character string
Name of the project to start. When running the project, the style sheet of the project library is loaded.
Observaciones
  • Important: function Projet must be called after function Library,Disk and before function HInit.
  • If a first window was selected in the list of projects, this window will be opened by Project. To avoid opening a window, select <None> as first window in the list of project windows.
  • A program written in C or in Pascal may only contain the function for starting the project.
  • WdKey contains "*E*" if an error occurred during the opening.
  • If a window calls some global variables or procedures, the project must be run by Project before opening the window, otherwise the global variables or procedures and the style sheet will not be recognized.
  • Several projects can be called in the same program. To do so, the current project must be closed before opening another one. To close the current project, use the following syntax:
    • Example in C:
      HInit(&stArrCtn[0],NBCTN);
      CALLWD("LIBRA,,DISK,MYLIBRARY");
      CALLWD("PROJECT,MyProject");
    • Example in Pascal:
      HInit;
      CALLWD('PROJECT, LIBRARY,DISK,MYLIBRARY');
      CALLWD('PROJECT, MyProject');
    • Example in VB:
      call HInit
      call CALLWD("PROJECT, BLIBRARY,DISK,MYLIBRARY ")
      call CALLWD("PROJECT, MyProject ")
Versión mínima requerida
  • Versión 14
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 30/09/2024

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