I'm using Dephi to automate mass user account. With WindowsXP3 and IE8 I can use mass user account.
Example: I have 2 TWebBrowser
, the WebBrowser1
uses user1,pass1
account. the WebBrwoser2
uses user2,pass2
account. Using IE8 I can do
this.
But with IE10 I can't. Is there some settings to change in IE10 to make this perform like IE8?
What is the setting to be change in IE10?
Yes, I created 2 different threads.
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;