Home > Back-end >  Use webbrowser how to realize the small like 360 and sogou browser window function?
Use webbrowser how to realize the small like 360 and sogou browser window function?

Time:10-21

Using a small window, can use different user login the same website, do not share each other cookie, not string of Numbers, with a trumpet in 360 and sogou browser window is can achieve this function, but not know how to use webbrowser implementation, or any other good idea? Masters, please show you give directions, thank you

CodePudding user response:

Is that ok? Didn't try,,

CodePudding user response:

With multiple processes,,,,

CodePudding user response:

# 2 + 1

CodePudding user response:

refer to the second floor cplm88 response:
with multiple processes,,,,


Use the following method, multiple operation, is also a Shared, specific is do?
Var
EXEpath: string;
StartupInfo: TStartupInfo;
ProcessInfo: TProcessInformation;
The begin
EXEpath:=ExtractFilePath (ParamStr (0)) + 'project1. Exe';//the executable path
FillChar (StartupInfo, sizeof (StartupInfo), # 0);
StartupInfo. Cb:=SizeOf (StartupInfo);
StartupInfo. WShowWindow:=SW_SHOWNORMAL;//to open the new process form
StartupInfo. DwFlags:=STARTF_USESHOWWINDOW;
CreateProcess (nil, PChar (EXEpath), nil, nil, False, CREATE_NEW_PROCESS_GROUP or NORMAL_PRIORITY_CLASS, nil, nil, StartupInfo, ProcessInfo);
end;

CodePudding user response:

Because the cookie is all webbroswer Shared

CodePudding user response:

reference 4 floor seav response:
reference cplm88 reply 2 floor:
With multiple processes,,,,

Use the following method, multiple operation, is also a Shared, specific is do?

The building Lord, for example, such as access which website is multi-process sharing cookies?? Like CSDN tick "remember" a week, will certainly be more to share...

Drop by for multi-process WebBrowser session sharing way...

CodePudding user response:

Then top up

CodePudding user response:

Then top up

CodePudding user response:

I'll ask the same question
  • Related