git-svn-id: https://192.168.0.254/svn/Proyectos.Tecsitel_FactuGES2/trunk@739 0c75b7a4-871f-7646-8a2f-f78d34cc349f
25 lines
528 B
ObjectPascal
25 lines
528 B
ObjectPascal
unit uEditorElegirAlmacenObraOperacion;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
|
Dialogs, cxGraphics, cxControls, cxContainer, cxEdit, cxTextEdit, cxMaskEdit,
|
|
cxDropDownEdit, StdCtrls, ExtCtrls;
|
|
|
|
type
|
|
TfEditorElegirAlmacenObraOperacion = class(TForm)
|
|
eEtiqueta: TLabel;
|
|
cxListaAlmacenesObras: TcxComboBox;
|
|
eDescripcion: TLabel;
|
|
Panel1: TPanel;
|
|
Button2: TButton;
|
|
Button1: TButton;
|
|
end;
|
|
|
|
implementation
|
|
{$R *.dfm}
|
|
|
|
|
|
end.
|