Topic: How to copy textbox then write to another textbox ?

How to copy textbox then write to another textbox ?

textbox  A   (write)  ----   textbox B (A copy)

Post's attachments

Attachment icon ssй.jpg 205.97 kb, 276 downloads since 2015-04-24 

Re: How to copy textbox then write to another textbox ?

procedure Form1_TextBoxA_OnChange (Sender: string);
begin
     Form1.TextBoxB.Text := Form1.TextBoxA.Text;
end;
Dmitry.

Re: How to copy textbox then write to another textbox ?

DriveSoft wrote:
procedure Form1_TextBoxA_OnChange (Sender: string);
begin
     Form1.TextBoxB.Text := Form1.TextBoxA.Text;
end;

Thanks Dmitry wink