FIX: Calling CHttpFile::ErrorDlg Function Causes Errors 127 & 2 (189094)
The information in this article applies to:
- Microsoft Visual C++, 32-bit Enterprise Edition 5.0
- Microsoft Visual C++, 32-bit Professional Edition 5.0
- Microsoft Internet Explorer (Programming)
- Microsoft Windows Internet Services (WinInet)
This article was previously published under Q189094 SYMPTOMS
Calling CHttpFile::ErrorDlg results in one of the following error messages:
Error: (127) The specified procedure could not be found.
Error: (2) The system cannot find the file specified.
CAUSE
MFC attempts to call the Unicode or American National Standards Institute
(ANSI) versions of most Win32 Internet Extensions (WinInet) functions when
appropriate. In the case of the ErrorDlg function, MFC attempts to call the
Unicode or ANSI version of the InternetErrorDlg function. For
InternetErrorDlg, Unicode and ANSI versions are not necessary (no character
data is passed in) and in fact, not available. When MFC attempts to call
the Unicode or ANSI version of the function, the function is not found in
the DLL.
RESOLUTION
It is possible to call the InternetErrorDlg function yourself. Following is
a section of the Tear sample modified to do so:
if (dwRet == HTTP_STATUS_DENIED)
{
DWORD dwPrompt;
//dwPrompt = pFile->ErrorDlg(NULL,
//ERROR_INTERNET_INCORRECT_PASSWORD,
//FLAGS_ERROR_UI_FLAGS_GENERATE_DATA |
//FLAGS_ERROR_UI_FLAGS_CHANGE_OPTIONS, NULL);
LPVOID lpEmpty;
dwPrompt = ::InternetErrorDlg(GetDesktopWindow(), *pFile,
ERROR_INTERNET_INCORRECT_PASSWORD,
FLAGS_ERROR_UI_FLAGS_GENERATE_DATA
| FLAGS_ERROR_UI_FLAGS_CHANGE_OPTIONS,
&lpEmpty);
if (dwPrompt != ERROR_INTERNET_FORCE_RETRY)
...
In some cases, you may want different parameters for InternetErrorDlg. See
the WinInet documentation for InternetErrorDlg and the MFC source code for
CHttpFile::ErrorDlg. Note that you must change your project setting to link
with wininet.lib in order to use InternetErrorDlg.
STATUS
Microsoft has confirmed this to be a bug in the Microsoft products
listed at the beginning of this article. This bug has been fixed in Visual C++ 6.0
REFERENCES
The Internet Client SDK: Internet Tools and Technologies; WinInet API
(c) Microsoft Corporation 1997, All Rights Reserved. Contributions by
Robert Duke,
Microsoft Corporation
Modification Type: | Major | Last Reviewed: | 12/2/2003 |
---|
Keywords: | kbBug kbfix kbVC600fix KB189094 |
---|
|