我正在使用Dephi自动化大量用户帐户。使用WindowsXP3和 IE8我可以使用大量用户帐户。
示例:我有2 TWebBrowser
,WebBrowser1
使用user1,pass1
帐户。 WebBrwoser2
使用user2,pass2
帐户。使用IE8我可以做到
此
但是IE10我不能。是否有一些设置需要更改 IE10使其表现得像IE8一样吗?
IE10中要更改的设置是什么?
是的,我创建了两个不同的主题。
type
twebthread1 = class(tthread)
private
flags:OleVariant;
tweb1:TWebBrowser;
constructor create;
procedure execute; override;
end;
type
twebthread2 = class(tthread)
private
flags:OleVariant;
tweb2:TWebBrowser;
constructor create;
procedure execute; override;
end;