Click here to Skip to main content
15,921,371 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 
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 
just started console application to see how I can obtain the FTP directory . one of the params was a HINTERNET handle

This is the code As for the property pages as I can not attach a picture I can only read off what I think is relevant

use of MFC - use standard windows libraries

Character Set Use Unicode character set

Windows SDK Version 10.0.17763.0

C++
#include "pch.h"
#include <iostream>
#include "winInet.h"
int main()
{
    std::cout << "Hello World!\n"; 
	InternetOpen("DBGR", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, INTERNET_FLAG_ASYNC);
}


This was the include directory generated by Visual Studio


Quote:
C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\VC\Tools\MSVC\14.16.27023\include
C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\VC\Tools\MSVC\14.16.27023\atlmfc\include
C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\VC\Auxiliary\VS\include
C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt
C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\um
C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\shared
C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\winrt
C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\cppwinrt
C:\Program Files (x86)\Windows Kits\NETFXSDK\4.6.1\Include\um

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.