Skip to content

Instantly share code, notes, and snippets.

@TPAKC
Created June 7, 2017 19:59
Show Gist options
  • Save TPAKC/0fe9af639ccfdbeefeab8602bf32db0a to your computer and use it in GitHub Desktop.
Save TPAKC/0fe9af639ccfdbeefeab8602bf32db0a to your computer and use it in GitHub Desktop.
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, jpeg, ExtCtrls, Buttons,Unit2;
type
TForm1 = class(TForm)
BitBtn1: TBitBtn;
Image1: TImage;
BitBtn2: TBitBtn;
BitBtn3: TBitBtn;
BitBtn4: TBitBtn;
BitBtn5: TBitBtn;
BitBtn6: TBitBtn;
BitBtn7: TBitBtn;
StaticText1: TStaticText;
procedure BitBtn1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.BitBtn1Click(Sender: TObject);
begin
Form1.Hide;
Form2.Show;
end;
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment