Einzelnen Beitrag anzeigen

Benutzerbild von Die Muhkuh
Die Muhkuh

Registriert seit: 21. Aug 2003
7.332 Beiträge
 
Delphi 2009 Professional
 
#7

Re: StringGrid cellen Inhalt to Clipboard

  Alt 13. Mai 2008, 11:12
Sollte das nicht so aussehen:

Delphi-Quellcode:
if (ssCtrl in Shift) and (Key = Ord('C')) then
  begin
    sKopieren:= StringGrid1.Cells[StringGrid1.Col,StringGrid1.Row];
  end;

   if (ssCtrl in Shift) and (Key = Ord('V')) then
  begin
    StringGrid1.Cells[StringGrid1.Col,StringGrid1.Row] := sKopieren;
  end;
[edit]Verdammt! Heute isser schnell der Junge[/edit]
  Mit Zitat antworten Zitat