10-29-2014, 07:30 PM
FYI - I just had an odd problem with a program I set up for load testing a server using the WebBrowser control. If you open multiple WebBrowser controls in separate threads in a single process they will share cookies; in my program each thread authenticated separately and each thread would overwrite the cookies from the other threads - the result wasn't pretty
By default the WebBrowser controls also share cookies between processes. Here's a utility that turns that feature off:
Function SuppressIECookies
I don't know if this will be useful for anyone else - but it was very useful for me. More explained in the URL that is in the QM comment in the code.

By default the WebBrowser controls also share cookies between processes. Here's a utility that turns that feature off:
Function SuppressIECookies
function
;http://stackoverflow.com/questions/18195844/make-net-webbrowser-not-to-share-cookies-with-ie-or-other-instances
def INTERNET_OPTION_SUPPRESS_BEHAVIOR 81
def INTERNET_SUPPRESS_COOKIE_PERSIST 3
int option = INTERNET_SUPPRESS_COOKIE_PERSIST
int sizeOfInt = 32
InternetSetOption(0 INTERNET_OPTION_SUPPRESS_BEHAVIOR &option sizeOfInt)
I don't know if this will be useful for anyone else - but it was very useful for me. More explained in the URL that is in the QM comment in the code.