unit Unit1; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, SWModule, StdCtrls, ComCtrls, swkey, swvskey, ExtCtrls, swtxtdsp; type TForm1 = class(TForm) Panel2: TPanel; Panel1: TPanel; Button1: TButton; Edit1: TEdit; Label1: TLabel; SWModule1: TSWModule; SWVerseKey1: TSWVerseKey; SWTextDisp1: TSWTextDisp; procedure Button1Click(Sender: TObject); private { Private declarations } public { Public declarations } end; var Form1: TForm1; implementation {$R *.DFM} procedure TForm1.Button1Click(Sender: TObject); begin SWVerseKey1.Text := Edit1.Text; SWTextDisp1.Display(); Label1.Caption := SWVerseKey1.Text; end; end.