Varela_PuntosVenta/Source/Configuracion/uPanelControl.pas
2008-04-15 09:28:58 +00:00

51 lines
982 B
ObjectPascal
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

unit uPanelControl;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ComCtrls, JvExControls, JvComponent, JvgWizardHeader, StdCtrls,
ExtCtrls, uDMBase, JvNavigationPane, cxControls, cxContainer,
cxEdit, cxLabel, Buttons, PngSpeedButton, pngimage;
type
TfPanelControl = class(TForm)
TabControl1: TTabControl;
Button1: TButton;
JvNavPanelHeader1: TJvNavPanelHeader;
lblUsuarios: TcxLabel;
Image1: TImage;
procedure lblUsuariosClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
procedure VerPanelControl;
implementation
uses uUsuarios;
{$R *.dfm}
procedure VerPanelControl;
begin
with TfPanelControl.Create(NIL) do
try
ShowModal;
finally
Free;
end;
end;
procedure TfPanelControl.lblUsuariosClick(Sender: TObject);
begin
AdministrarUsuarios;
end;
end.