Thema
:
Delphi
2D Array und MausPosition
Einzelnen Beitrag anzeigen
StefanDP
Registriert seit: 11. Apr 2004
294 Beiträge
#
9
Re: 2D Array und MausPosition
1. Jun 2004, 18:37
Sorry!
probier mal folgendes:
markieren
Delphi-Quellcode:
procedure
TForm1.Image1MouseDown(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
begin
// SetRoundMode(rmDown); // erstes kästchen wird zu 0|0
SetRoundMode(rmUp);
// erstes Kästechen wird zu 1|1
ShowMessage('
X:
' + IntToStr(round(X/32)) + '
, Y:
' + IntToStr(round(Y/32)));
end
;
Zitat
StefanDP
Öffentliches Profil ansehen
Mehr Beiträge von StefanDP finden