Servus. Ich programmiere grade eine
DLL für mIRC, nun ist meine frage, kann ich eine form mit der
dll erzeugen, die dann für ca 5 sek angezeigt wird? wenn ja, wie, was muss ich beachten?
Das hier war mein ansatz:
Delphi-Quellcode:
type
TForm1 = class(TForm)
private
{ Private declarations }
public
{ Public declarations }
end;
function formtest( mWnd: hWnd; aWnd: hWnd; Data: PChar; Parms: PChar; Show: Boolean; NoPause: Boolean ): Integer; export; stdcall;
var
Form1 : TForm1;
begin
Application.CreateForm(TForm1, Form1);
Form1.Create(Form1);
Form1.Width := 30;
Form1.Height := 30;
Form1.Left := 10;
Form1.Top := 10;
Form1.BorderStyle := bsnone;
result := 1;
end;
aber an der stelle Form1.Width kommt: "Ressource TForm1 not found. Stopped" <-- meldunge vom debugger...
MfG