Click here to Skip to main content
15,914,258 members
Home / Discussions / Windows Development
   

Windows Development

 
GeneralRe: Is it necessary to install a program, with known compatibility issues, in compatibility mode? Pin
Randor 15-Aug-20 9:15
professional Randor 15-Aug-20 9:15 
QuestionHow is the Windows 10 Device Manager "Display Adapters" icon supposed to look? Pin
RedDk16-May-20 12:31
RedDk16-May-20 12:31 
AnswerRe: How is the Windows 10 Device Manager "Display Adapters" icon supposed to look? Pin
Dave Kreskowiak20-May-20 8:57
mveDave Kreskowiak20-May-20 8:57 
GeneralRe: How is the Windows 10 Device Manager "Display Adapters" icon supposed to look? Pin
RedDk20-May-20 9:37
RedDk20-May-20 9:37 
QuestionPreviewing files within an application Pin
kalberts28-Apr-20 22:15
kalberts28-Apr-20 22:15 
SuggestionRe: Previewing files within an application Pin
Richard MacCutchan28-Apr-20 22:51
mveRichard MacCutchan28-Apr-20 22:51 
AnswerRe: Previewing files within an application Pin
JudyL_MD30-Apr-20 7:05
JudyL_MD30-Apr-20 7:05 
QuestionSendInput mouse/keyboard and TouchScreen Pin
Member 142257573-Mar-20 4:34
Member 142257573-Mar-20 4:34 
AnswerRe: SendInput mouse/keyboard and TouchScreen Pin
Randor 15-Aug-20 9:06
professional Randor 15-Aug-20 9:06 
QuestionDNS query with winsock was failed Pin
Eugene Pustovoyt12-Feb-20 4:35
Eugene Pustovoyt12-Feb-20 4:35 
AnswerRe: DNS query with winsock was failed Pin
Gerry Schmitz12-Feb-20 10:06
mveGerry Schmitz12-Feb-20 10:06 
GeneralRe: DNS query with winsock was failed Pin
Eugene Pustovoyt12-Feb-20 21:48
Eugene Pustovoyt12-Feb-20 21:48 
AnswerRe: DNS query with winsock was failed Pin
Richard MacCutchan12-Feb-20 21:58
mveRichard MacCutchan12-Feb-20 21:58 
GeneralRe: DNS query with winsock was failed Pin
Eugene Pustovoyt12-Feb-20 22:04
Eugene Pustovoyt12-Feb-20 22:04 
GeneralRe: DNS query with winsock was failed Pin
Richard MacCutchan12-Feb-20 23:27
mveRichard MacCutchan12-Feb-20 23:27 
GeneralRe: DNS query with winsock was failed Pin
Eugene Pustovoyt12-Feb-20 23:35
Eugene Pustovoyt12-Feb-20 23:35 
GeneralRe: DNS query with winsock was failed Pin
Richard MacCutchan12-Feb-20 23:49
mveRichard MacCutchan12-Feb-20 23:49 
AnswerRe: DNS query with winsock was failed Pin
Randor 15-Aug-20 9:19
professional Randor 15-Aug-20 9:19 
QuestionObtaining HINTERNET Handles Pin
ForNow11-Feb-20 3:15
ForNow11-Feb-20 3:15 
AnswerRe: Obtaining HINTERNET Handles Pin
Richard MacCutchan11-Feb-20 5:26
mveRichard MacCutchan11-Feb-20 5:26 
GeneralRe: Obtaining HINTERNET Handles Pin
ForNow11-Feb-20 5:53
ForNow11-Feb-20 5:53 
Sorry my mistake its InternetOpen regardless intelisense is giving me a error #define internetOpen internetOpenW and internetOpenW is not defined

However looking at winInet.h

C++
INTERNETAPI_(HINTERNET) InternetOpenA(
    _In_opt_ LPCSTR lpszAgent,
    _In_ DWORD dwAccessType,
    _In_opt_ LPCSTR lpszProxy,
    _In_opt_ LPCSTR lpszProxyBypass,
    _In_ DWORD dwFlags
    );
INTERNETAPI_(HINTERNET) InternetOpenW(
    _In_opt_ LPCWSTR lpszAgent,
    _In_ DWORD dwAccessType,
    _In_opt_ LPCWSTR lpszProxy,
    _In_opt_ LPCWSTR lpszProxyBypass,
    _In_ DWORD dwFlags
    );
#ifdef UNICODE
#define InternetOpen  InternetOpenW
#else
#define InternetOpen  InternetOpenA
#endif // !UNICODE


Whether my property page settings are Unicode or Multicharacter I still get the same error

Thanks
GeneralRe: Obtaining HINTERNET Handles Pin
Richard MacCutchan11-Feb-20 8:18
mveRichard MacCutchan11-Feb-20 8:18 
GeneralRe: Obtaining HINTERNET Handles Pin
ForNow11-Feb-20 9:11
ForNow11-Feb-20 9:11 
GeneralRe: Obtaining HINTERNET Handles Pin
Richard MacCutchan11-Feb-20 9:37
mveRichard MacCutchan11-Feb-20 9:37 
GeneralRe: Obtaining HINTERNET Handles Pin
ForNow11-Feb-20 10:26
ForNow11-Feb-20 10:26 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.