Just an alternative on the way to open browsers:
String^ myURL = "http://www.google.com";
System::Diagnostics::Process::Start("iexplore.exe", myURL );
I beleive what you have to do is to extract the login and password as two strings and then create a new string (myURL) like this:
String^ myURL = "http://www.google.com";
String^ mylogin = "abc";
String^ myPassword = "def"
//New myURL
myURL = myURL + "/" + myUser + "/" + myPassword;
Hope it helps!
Alright so I'm working with a program that works with various email programs and I'd like to use it to automate the login process. I know I can open a browser using
ShellExecute(NULL, "open", "https://various.email.com/", NULL, NULL, SW_SHOWNORMAL);
but how would I actually parse the login/password strings into the text fields of the browser?