Index: main.pas
===================================================================
--- main.pas	(revision 211)
+++ main.pas	(working copy)
@@ -723,7 +723,7 @@
   EditRedo.Enabled := False;//AValue;
   EditCopy.Enabled := AValue;
   EditCut.Enabled := AValue;
-  EditPaste.Enabled := False;//AValue;
+  EditPaste.Enabled := True;//AValue;
   EditDelete.Enabled := AValue;
   EditSelectAll.Enabled := AValue;
   
Index: picturectrls.pas
===================================================================
--- picturectrls.pas	(revision 211)
+++ picturectrls.pas	(working copy)
@@ -1084,7 +1084,8 @@
   if Picture = nil then Exit;
   BeginDraw;
   try
-    Assert(True, 'Implement Paste');
+    Picture.PasteFromClipboard;
+    //Assert(True, 'Implement Paste');
   finally
     EndDraw;
   end;
