Und wie ist das Interface deklariert?
Delphi-Quellcode:
ISkinFrameButton = interface
['{810D9186-F618-4EE6-84C3-054CDBAE1496}']
end;
und die classe welche ich ansprechen will
Delphi-Quellcode:
TSkinFrameButton =
class(TInterfacedObject, ISkinFrameButton)
private
HFrameButton: HWND;
Img: cardinal;
Style: DWORD;
public
property Handle: HWND
Read HFrameButton;
constructor Create(hOwner: HWND; FullpathImageName:
string;
skLabel: PAnsiChar; x, y, xW, yH, ButID, StateMax: integer; Enabled: Boolean);
destructor Destroy;
override;
end;
gruss