home *** CD-ROM | disk | FTP | other *** search
/ Delphi 4 Bible / Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso / source / Clipboard / Clip1.pas next >
Pascal/Delphi Source File  |  1998-03-13  |  532b  |  19 lines

  1. procedure TForm1.CopyButtonClick(Sender: TObject);
  2. begin
  3.   with Memo1 do
  4.   begin
  5.     if SelLength = 0 then   // If no text selected,
  6.       SelectAll;            // select all lines of Memo1.
  7.     if SelLength = 0 then   // If still no text selected,
  8.       Exit;                 // Memo1 is empty--exit now.
  9.     Clipboard.Clear;
  10.     Clipboard.AsText := Memo1.Text;
  11.   end;
  12. end;
  13.  
  14. procedure TForm1.PasteButtonClick(Sender: TObject);
  15. begin
  16.   if Clipboard.HasFormat(CF_TEXT) then
  17.     Memo1.Text := Clipboard.AsText;
  18. end;
  19.