Click here to Skip to main content
15,905,504 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Classes in C Pin
Alan Balkany17-Aug-11 4:32
Alan Balkany17-Aug-11 4:32 
GeneralRe: Classes in C Pin
jschell17-Aug-11 8:54
jschell17-Aug-11 8:54 
GeneralRe: Classes in C Pin
Alan Balkany17-Aug-11 9:15
Alan Balkany17-Aug-11 9:15 
AnswerRe: Classes in C Pin
Stefan_Lang22-Aug-11 4:04
Stefan_Lang22-Aug-11 4:04 
Questionhow to implement a dll for connecting the browser through proxy server in vc++ Pin
vkgktm16-Aug-11 20:36
vkgktm16-Aug-11 20:36 
AnswerRe: how to implement a dll for connecting the browser through proxy server in vc++ Pin
Richard MacCutchan16-Aug-11 22:33
mveRichard MacCutchan16-Aug-11 22:33 
QuestionCatch SHIFT key in PreTranslateMessage Pin
_Flaviu16-Aug-11 1:54
_Flaviu16-Aug-11 1:54 
AnswerRe: Catch SHIFT key in PreTranslateMessage Pin
Code-o-mat16-Aug-11 2:00
Code-o-mat16-Aug-11 2:00 
GeneralRe: Catch SHIFT key in PreTranslateMessage Pin
_Flaviu16-Aug-11 22:54
_Flaviu16-Aug-11 22:54 
GeneralRe: Catch SHIFT key in PreTranslateMessage Pin
Code-o-mat16-Aug-11 22:56
Code-o-mat16-Aug-11 22:56 
Questionweb service interface return 4 and 12 [solved] Pin
yu-jian16-Aug-11 0:57
yu-jian16-Aug-11 0:57 
QuestionRe: web service interface return 4 and 12 Pin
Richard MacCutchan16-Aug-11 1:06
mveRichard MacCutchan16-Aug-11 1:06 
AnswerRe: web service interface return 4 and 12 Pin
yu-jian16-Aug-11 6:40
yu-jian16-Aug-11 6:40 
GeneralRe: web service interface return 4 and 12 Pin
Richard MacCutchan16-Aug-11 9:36
mveRichard MacCutchan16-Aug-11 9:36 
AnswerRe: web service interface return 4 and 12 Pin
David Crow16-Aug-11 6:46
David Crow16-Aug-11 6:46 
AnswerRe: web service interface return 4 and 12 Pin
Albert Holguin16-Aug-11 9:38
professionalAlbert Holguin16-Aug-11 9:38 
QuestionHow to set the text of a Picture Control Pin
Amrit Agr15-Aug-11 20:07
Amrit Agr15-Aug-11 20:07 
AnswerRe: How to set the text of a Picture Control Pin
Code-o-mat15-Aug-11 22:13
Code-o-mat15-Aug-11 22:13 
AnswerRe: How to set the text of a Picture Control Pin
Richard MacCutchan15-Aug-11 22:36
mveRichard MacCutchan15-Aug-11 22:36 
GeneralRe: How to set the text of a Picture Control Pin
Amrit Agr15-Aug-11 23:22
Amrit Agr15-Aug-11 23:22 
GeneralRe: How to set the text of a Picture Control Pin
Richard MacCutchan16-Aug-11 0:16
mveRichard MacCutchan16-Aug-11 0:16 
GeneralRe: How to set the text of a Picture Control Pin
Code-o-mat16-Aug-11 2:02
Code-o-mat16-Aug-11 2:02 
AnswerRe: How to set the text of a Picture Control Pin
enhzflep16-Aug-11 3:33
enhzflep16-Aug-11 3:33 
QuestionDownload file from internet Pin
_Flaviu15-Aug-11 6:12
_Flaviu15-Aug-11 6:12 
AnswerRe: Download file from internet Pin
Chuck O'Toole15-Aug-11 7:03
Chuck O'Toole15-Aug-11 7:03 
20 seconds with Google finds information about using and/or disabling caching of data locally and in the server/gateways.

dwFlags 
The flags describing how to handle this connection. See Remarks for more information about the valid flags. The valid flags are: 

INTERNET_FLAG_TRANSFER_ASCII   The default. Transfer the file as ASCII text.

INTERNET_FLAG_TRANSFER_BINARY   Transfer the file as a binary file.

INTERNET_FLAG_RELOAD   Get the data from the wire even if it is locally cached.

INTERNET_FLAG_DONT_CACHE   Do not cache the data, either locally or in any gateways.

INTERNET_FLAG_SECURE   This flag is applicable to HTTP requests only. It requests secure transactions on the wire with Secure Sockets Layer or PCT.

INTERNET_OPEN_FLAG_USE_EXISTING_CONNECT   If possible, reuse the existing connections to the server for new requests generated by OpenUrl instead of creating a new session for each connection request.

INTERNET_FLAG_PASSIVE   Used for an FTP site. Uses passive FTP semantics. Used with CInternetConnection of OpenURL

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.