ich hänge wieder an einem Problem fest und beiße mir die Zähne dran aus.
Ich möchte den Internet Explorer/Firefox in meinem PGM integrieren (dies hat den Sinn da die IPProHtmlPanel einfach noch nicht weit genug entwickelt sind (etwa für Java, Plugins, etc..)
Ich starte also den Internetexplorer mit folgendem Code:
Code: Alles auswählen
var InternetExplorerHandle : THandle;
begin
AProcess := TProcess.Create(nil);
AProcess.CommandLine := 'iexplore.exe';
//AProcess.Options := AProcess.Options + [poWaitOnExit];
AProcess.Execute;
InternetExplorerHandle := AProcess.ProcessHandle;
AProcess.Free;
ich möchte diesen jetzt auf ein Panel legen..
Soweit wie ich auch suche komme ich immer nur auf SetParent('InternetExplorerHandle","PanelHandle")
SetParent bekommt unter Lazarus aber nur eine Funktion?!
Wie bekomme ich die Anwendung auf mein Panel?