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?
spectrum6125 0 Newbie Poster
Recommended Answers
Jump to PostWell when the page loads up. You SHOULD CHECK OUT THE source and see for the names of the forms.
then you can write something like this
"http://www.some.some/login.php?FORMNAME1=Username&FORMNAME2=Password
Replace formname with the actual form names in the source and User Name and password with …
All 4 Replies
Liszt 23 Junior Poster
iamthwee commented: not pure c++ -4
MosaicFuneral 812 Nearly a Posting Virtuoso
spectrum6125 0 Newbie Poster
Sky Diploma 571 Practically a Posting Shark
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.