|
|
#2
anthony6342007-07-04 13:14
|
procedure TForm1.FormKeyPress(Sender: TObject; var Key: Char);
if Key in ['v'] then
begin
if Clipboard.HasFormat(CF_BITMAP) then
Image1.Picture.Bitmap.Assign(Clipboard);
end;
在这上面我没有引用ClipBrd但是出现标题错误的原因是什么?