This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
LuisLeon_FactuGES/Source/Servidor/uAcercaDe.pas
david 344ba18b08 Tienda web:
- poder indicar individualmente qué artículos están en la tienda o no
 - arreglado el problema con ñ y tildes al volcar información a MySQL.

git-svn-id: https://192.168.0.254/svn/Proyectos.LuisLeon_FactuGES/trunk@247 c93665c3-c93d-084d-9b98-7d5f4a9c3376
2008-06-16 16:43:21 +00:00

48 lines
1.0 KiB
ObjectPascal

unit uAcercaDe;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, JvGIF, ExtCtrls, JvExControls, JvComponent, JvGradient, StdCtrls;
type
TfAcercaDe = class(TForm)
JvGradient1: TJvGradient;
Panel1: TPanel;
Image1: TImage;
Bevel1: TBevel;
bAceptar: TButton;
memModulos: TMemo;
procedure FormShow(Sender: TObject);
end;
implementation
{$R *.dfm}
uses JclFileUtils, uDAInterfaces;
procedure TfAcercaDe.FormShow(Sender: TObject);
var
Obj : TJclFileVersionInfo;
begin
memModulos.Lines.Clear;
Obj := TJclFileVersionInfo.Create(Application.ExeName);
try
with Obj do
begin
memModulos.Lines.Add(ProductName + ' - Versión ' + FileVersion);
memModulos.Lines.Add(CompanyName);
memModulos.Lines.Add('');
memModulos.Lines.Add('Se autoriza el uso de este programa a:');
memModulos.Lines.Add('LUIS LEÓN REPRESENTACIONES S.L.');
end;
finally
FreeAndNil(Obj);
end;
end;
end.