desarrollosconsejeria/adtos-server/1.7-0/adtos/adtos.lpr @ 23a384b9
54e95a47 | Elisa | {
|
|
23a384b9 | Elisa | Adtos 1.0 Software de gestión de Aulas Tecnológicas
|
|
54e95a47 | Elisa | Programación: Manuel Narváez Martínez <mnarvaez007@gmail.com>
|
|
Diseño gráfico: Ana María Zamora Moreno
|
|||
Desarrollado con Lazarus 0.9.26
|
|||
This program is free software; you can redistribute it and/or modify
|
|||
it under the terms of the GNU General Public License as published by
|
|||
the Free Software Foundation; either version 2 of the License, or
|
|||
(at your option) any later version.
|
|||
This program is distributed in the hope that it will be useful,
|
|||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|||
GNU General Public License for more details.
|
|||
You should have received a copy of the GNU General Public License
|
|||
along with this program; if not, write to the Free Software
|
|||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|||
}
|
|||
23a384b9 | Elisa | program adtos;
|
|
54e95a47 | Elisa | ||
{$mode objfpc}{$H+}
|
|||
uses
|
|||
23a384b9 | Elisa | cthreads, Interfaces, Forms, inicio, RunTimeTypeInfoControls, indylaz,
|
|
globales, textomensajes, clequiposervidoraula, globales1,configuraraplicacion,
|
|||
dialogos, evaluar, clcomandos, clcuestion, SQLDBLaz,
|
|||
MemDSLaz, clenviararchivo, clenviarcarpeta, TAChartLazarusPkg, clcomandosroot, clequipoadministrador,
|
|||
progresscolor, cldetectarequposalumnos, aulas,
|
|||
contraservidores, clenviararchivoroot, clestadocentro, mapa,
|
|||
gruposservidores, clenviarcarpetaroot;
|
|||
{$IFDEF WINDOWS}{$R adtos.rc}{$ENDIF}
|
|||
{$R *.res}
|
|||
begin
|
|||
Application.Initialize;
|
|||
Application.CreateForm(TfrmMain, frmMain);
|
|||
Application.Run;
|
|||
54e95a47 | Elisa | end.
|