Hallo
ich habe ein Popupmenu welches in der Tag Property ein Pointer auf ein richedit hat.
nun will ich die Font(color,...) ändern aber es kommt bei der zuweisung immer eine
AV
Delphi-Quellcode:
var
temprich:^trichedit;
begin
TempRich := Pointer(Popupmenu1.Tag);
if Fontdialog1.Execute
then
begin
temprich.SelAttributes.
Name := fontdialog1.Font.
Name;
// <--- Hier tritt die AV auf
end;
end;
Was könnte das sein?