Einzelnen Beitrag anzeigen

marabu

Registriert seit: 6. Apr 2005
10.109 Beiträge
 
#5

Re: StringGrid und Popupmenü

  Alt 9. Aug 2005, 19:57
Hallo Thorsten,

so könnte das aussehen:

Delphi-Quellcode:
procedure TDemoForm.PopupMenuPopup(Sender: TObject);
var
  p: TPoint;
  iCol, iRow: integer;
begin
  with StringGrid do begin
    p := ScreenToClient(PopupMenu.PopupPoint);
    MouseToCell(p.X, p.Y, iCol, iRow);
    if (iCol < FixedCols) or (iRow < FixedRows) then begin
      ShowMessage('what the heck you think you are doing here?');
      Abort;
    end;
  end;
end;
marabu
  Mit Zitat antworten Zitat