M
Massimo ENDRIZZI
I am a c++ beginner and have the following problem:
I wrote a simple internet application using Dev-C++ (on Win XP) and three
ininet.dll functions, something like this:
#include <wininet.h>
#include <stdio.h>
#include <iostream>
.....
HINTERNET hNet, hConn;
long cZero = 0;
char * NullString = 0;
hNet = InternetOpenA(............);
hConn = InternetOpenUrl(hNet, ......);
.......
Everything works fine, I compiled the project and the exe-file runs good.
But this as long as I run it on the comp on wich I programmed and compiled
it. If I try to run it on another computer, I get the error message that the
wininet.dll cannot be found (the path-directories will be checked) though
the wininet.dll is installed.
Could someone help me? I wouldn't like to rewrite all in VB, 'cause I'm
trying to change my programming language...
Thanks!!!
Massimo
I wrote a simple internet application using Dev-C++ (on Win XP) and three
ininet.dll functions, something like this:
#include <wininet.h>
#include <stdio.h>
#include <iostream>
.....
HINTERNET hNet, hConn;
long cZero = 0;
char * NullString = 0;
hNet = InternetOpenA(............);
hConn = InternetOpenUrl(hNet, ......);
.......
Everything works fine, I compiled the project and the exe-file runs good.
But this as long as I run it on the comp on wich I programmed and compiled
it. If I try to run it on another computer, I get the error message that the
wininet.dll cannot be found (the path-directories will be checked) though
the wininet.dll is installed.
Could someone help me? I wouldn't like to rewrite all in VB, 'cause I'm
trying to change my programming language...
Thanks!!!
Massimo