Moin!
Hab ein Problem, ich will etwas mit einer Paintbox darstellen und nutze zum Zugriff auf diese eine ausgelagerte Prozedur...
Jetzt zeigt er mir an, dass pbox1. ein undefinierter Bezeichner ist. Ich kann also nicht auf das Forumlar zugreifen?!
Hat jemand eine Lösung?
Delphi-Quellcode:
procedure ani;
begin
while AnzDurchgange > 0
do
begin
xAktExt:=xAktExt+SummandX;
yAktExt:=yAktExt+SummandY;
xAkt:=round(xAktExt);
yAkt:=round(yAktExt);
pbox1.Canvas.Draw(xAkt,yAkt,kugel);
//Fehler hier
dec(AnzDurchgange);
end;
Hoffe ihr könnt mir helfen!
lg,
nerd