unit U_inicial;

interface

uses
  Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
  Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls;

type
  TForm1 = class(TForm)
    Label1: TLabel;
    ed_funcionario: TEdit;
    cb_depto: TComboBox;
    Label2: TLabel;
    Label3: TLabel;
    ed_jornada: TEdit;
    ed_salario: TEdit;
    Edit3: TEdit;
    Edit4: TEdit;
    Edit5: TEdit;
    bt_calcular: TButton;
    Button2: TButton;
    Label4: TLabel;
    Label5: TLabel;
    Label6: TLabel;
    Label7: TLabel;
    procedure Label7Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

end.
