Registriert seit: 28. Feb 2005
Ort: Berlin
281 Beiträge
Delphi 7 Professional
|
Control aus dll Problem???
10. Jul 2009, 21:13
Hallo,
Ich habe 2 Panels auf meiner dll Form. Wenn ich sie auf rufe bekomme ich eine Fehler Meldung "Listenindex überschreitet Maximum"
Mein Code:
Delphi-Quellcode:
if not Assigned(FLoadedForm) then
begin
lMyFormClass := GetProcAddress(FLibHandle, 'MyFormClass');
if @lMyFormClass <> nil then
begin
FLoadedForm := lMyFormClass.Create(nil);
For i:=0 to FLoadedForm.ControlCount -1 do
FLoadedForm.Controls[i].Parent := ScrollBox1;
end;
end;
end;
Habt ihr ne Idee?
Gruß Bernd
Bernd Es ist keine Schande, nichts zu wissen, wohl aber, nichts lernen zu wollen.
Sokrates
|