This repository has been archived on 2024-12-02. You can view files and clone it, but cannot push or open issues or pull requests.
AlonsoYSal_FactuGES/Modulos/Contactos/Cliente/uViewVendedor.pas
2007-06-21 16:02:50 +00:00

28 lines
651 B
ObjectPascal

unit uViewVendedor;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, uViewContacto, DB, uDADataTable, uViewDireccion, uViewInternet,
uCustomView, uViewBase, uViewTelefonos, cxControls, cxContainer, cxEdit,
cxTextEdit, cxDBEdit, ExtCtrls, StdCtrls, cxMaskEdit, cxSpinEdit;
type
IViewVendedor = interface(IViewContacto)
['{5BCCD062-7B3C-4D93-AF37-EF0418DDA739}']
end;
TfrViewVendedor = class(TfrViewContacto, IViewVendedor)
Label3: TLabel;
Panel1: TPanel;
Label4: TLabel;
eComision: TcxDBSpinEdit;
end;
implementation
{$R *.dfm}
end.