Re: Upload Data using c++.
In your c++ code you are not checking the various API function calls for failure.
Re: Upload Data using c++.
So, what can I do for removing these errors.
Re: Upload Data using c++.
After every call to an API you check for failure. eg for InternetOpen() it returns NULL for failure (https://msdn.microsoft.com/en-us/lib...=vs.85%29.aspx). So you code something like
Code:
HINTERNET hSession = InternetOpen(_T("MyAgent"), INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
if (hSession == NULL) {
cout << "InternetOpen failure. Error: " << GetLastError() << endl;
return 1;
}
and similarly for other function calls.
Re: Upload Data using c++.
i need sequential pattern mining (ISE) C/ C++ Source code. plz help.
Re: Upload Data using c++.
Quote:
i need sequential pattern mining (ISE) C/ C++ Source code. plz help.
Please, start a new thread and describe your problem more clear.