Insider1984
Technical User
I'm playing with a program that allows on the fly javascript writing using various dialogs etc (nothing fancy). It works great but now I would like it to grab the file from ftp and then redownload it.
I was thinking that the OS would handle going out to grab the file (isn't this why MS illegally bundles IE into it's OS?) as long as I had something like:
well as most people might assume... this didn't work... any easy way to do this?
I was thinking that the OS would handle going out to grab the file (isn't this why MS illegally bundles IE into it's OS?) as long as I had something like:
Code:
FILE *html;
CString filename = "ftp://username:password@ftp.2khappy.com/public/test.html";
fopen(html,"r");
well as most people might assume... this didn't work... any easy way to do this?