Its very easy to select the date by just formating the part of the url
where date is and then calling URLDownloadToFile however
I find it rather difficult to convert timezones and was hoping perhaps
it would be possible to change the calendar timezone with a program.
How could I change the timezone c++/windows sdk and download that html?
If I could somehow send cookie information before downloading html, I would know exactly what to do.
Thanks!
I had a look at the website but couldn't see a way to change the timezone. I guess you can do it only when you are logged in. You can automate a website by using a webbrowser control. However in plain C this is really difficult(COM). If you are not fainthearted have a look: https://www.codeproject.com/articles/3365/embed-an-html-control-in-your-own-window-using-pla
Much easier if you could use MFC or .NET
Is there anyway to download html while sending the cookie like browsers do?
I am not aware of one. Cookies are sent from the browser to the server, but only if the website sent a cookie in the first place. Since this website does not send cookies, what could you send ?