Delphi 2010 ve Delpi XE2 aynı pc üzerinde kullanımı!
Destek talebi(Lütfen oy verelim!)
Sitemiz üye alımına kapatılmıştır!
! CODEBANK 2012 !
İNDİRMEK&DETAYLI BİLGİ ALMAK İÇİN BURAYI TIKLAYINIZ.
0 Üye ve 1 Ziyaretçi konuyu incelemekte.
procedure CopyButtonClick(Sender: TObject);beginIf ActiveControl is TMemo then TMemo(ActiveControl).CopyToClipboard;If ActiveControl is TDBMemo then TDBMemo(ActiveControl).CopyToClipboard;If ActiveControl is TEdit then TEdit(ActiveControl).CopyToClipboard;If ActiveControl is TDBedit then TDBedit(ActiveControl).CopyToClipboard;end;procedure PasteButtonClick(Sender: TObject);beginIf ActiveControl is TMemo then TMemo(ActiveControl).PasteFromClipboard;If ActiveControl is TDBMemo then TDBMemo(ActiveControl).PasteFromClipboard;If ActiveControl is TEdit then TEdit(ActiveControl).PasteFromClipboard;If ActiveControl is TDBedit then TDBedit(ActiveControl).PasteFromClipboard;end;