This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| unit UFormDashboard2; | |
| interface | |
| uses | |
| Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, | |
| Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ComCtrls, | |
| Vcl.ExtCtrls, Vcl.CheckLst, Vcl.Clipbrd, Vcl.Grids, Vcl.DBGrids, | |
| Data.DB, // 1. Tipos de datos de Delphi (TDataSet, etc.) - Primero | |
| dbisamtb, // 2. Motor DBISAM - Segundo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| program DashboardA2; | |
| uses | |
| Vcl.Forms, | |
| System.SysUtils, | |
| UFormDashboard in 'UFormDashboard.pas' {Form1}, | |
| UDataModule in 'UDataModule.pas' {DM: TDataModule}, | |
| UModCopiaData in 'UModCopiaData.pas', | |
| UFrmSplash in 'UFrmSplash.pas' {FrmSplash}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| unit UFormDashboard; | |
| interface | |
| uses | |
| Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, | |
| Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ComCtrls, Vcl.ExtCtrls, | |
| Vcl.CheckLst, Vcl.Clipbrd, | |
| UDataModule, // Enlace a tu DataModule | |
| dbisamtb, VclTee.TeeGDIPlus, VCLTee.Series, VCLTee.TeEngine, VCLTee.TeeProcs, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| unit UModCopiaData; | |
| interface | |
| uses | |
| System.SysUtils, System.Classes, System.IOUtils, Vcl.ComCtrls, Vcl.StdCtrls, Vcl.Dialogs; | |
| type | |
| TModCopiaData = class | |
| private |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| unit UDataModule; | |
| interface | |
| uses | |
| System.SysUtils, System.Classes, dbisamcn, dbisamtb, Data.DB, Vcl.Dialogs; | |
| type | |
| TDM = class(TDataModule) | |
| SessionA2: TDBISAMSession; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| unit UFormDashboard; | |
| interface | |
| uses | |
| Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, | |
| Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ComCtrls, Vcl.ExtCtrls, | |
| Vcl.CheckLst, Vcl.Clipbrd, | |
| UDataModule, // Enlace a tu DataModule | |
| dbisamtb, VclTee.TeeGDIPlus, VCLTee.Series, VCLTee.TeEngine, VCLTee.TeeProcs, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| unit UFrmSplash; | |
| interface | |
| uses | |
| Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, | |
| Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ComCtrls; | |
| type | |
| TFrmSplash = class(TForm) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| unit UModCopiaData; | |
| interface | |
| uses | |
| System.SysUtils, System.Classes, System.IOUtils, Vcl.ComCtrls, Vcl.StdCtrls, Vcl.Dialogs; | |
| type | |
| TModCopiaData = class | |
| private |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| unit UDataModule; | |
| interface | |
| uses | |
| System.SysUtils, System.Classes, dbisamcn, dbisamtb, Data.DB, Vcl.Dialogs; | |
| type | |
| TDM = class(TDataModule) | |
| SessionA2: TDBISAMSession; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| unit UFormDashboard; | |
| interface | |
| uses | |
| Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, | |
| Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ComCtrls, Vcl.ExtCtrls, | |
| Vcl.CheckLst, Vcl.Clipbrd, | |
| UDataModule, // Enlace a tu DataModule | |
| dbisamtb, VclTee.TeeGDIPlus, VCLTee.Series, VCLTee.TeEngine, VCLTee.TeeProcs, |
NewerOlder