Re: Text from editbox appear in another editbox


[ Related Articles and Replies ] [ DelphiLand FAQ ] [ Delphi Tutorials ]

Posted by Rbrrneck on July 19, 2002 at 22:19:53:

In Reply to: Text from editbox appear in another editbox posted by Jason on July 18, 2002 at 23:57:37:

: How do I make text from an editbox appear in another editbox when a button is clicked?

procedure TForm1.Button1Click(Sender:Tobject);
begin
edit2.text:=edit1.text;
{edit2 is the second,and edit1 is the first editbox}
end;

Hope this is what you mean,
Rbrrneck


Related Articles and Replies:


[ Related Articles and Replies ] [ DelphiLand FAQ ] [ Delphi Tutorials ]