Click here to Skip to main content
15,886,763 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionThreading Pin
MsmVc20-Mar-09 20:51
MsmVc20-Mar-09 20:51 
AnswerRe: Threading Pin
Rajesh R Subramanian20-Mar-09 23:37
professionalRajesh R Subramanian20-Mar-09 23:37 
GeneralRe: Threading Pin
MsmVc21-Mar-09 2:50
MsmVc21-Mar-09 2:50 
GeneralRe: Threading Pin
Rajesh R Subramanian21-Mar-09 4:10
professionalRajesh R Subramanian21-Mar-09 4:10 
QuestionURLDownloadtoFile() Pin
p_196020-Mar-09 20:35
p_196020-Mar-09 20:35 
AnswerRe: URLDownloadtoFile() Pin
sashoalm20-Mar-09 21:26
sashoalm20-Mar-09 21:26 
Generalclass DownloadUrl Pin
sashoalm20-Mar-09 21:27
sashoalm20-Mar-09 21:27 
GeneralHow to use Pin
sashoalm20-Mar-09 21:35
sashoalm20-Mar-09 21:35 
try {
	// start connection to server
	DownloadUrl download_url("http://example.com/content.html");

	// memory buffer
	static const unsigned buffer_size = 64*1024; // 64 KB
	char buffer[buffer_size+1];

	// output file
	ofstream tmpfile("c:\\file.html", ios::out | ios::binary);

	// download the content
	while (int bytes_read = download_url.Get(buffer, buffer_size))
	{
		tmpfile.write(buffer, bytes_read);

		// show progress
	}
	
} 
// catch exceptions
catch (exception& ) {
	// do something
}


There is sufficient light for those who desire to see, and there is sufficient darkness for those of a contrary disposition.
Blaise Pascal

GeneralRe: How to use Pin
p_196020-Mar-09 21:39
p_196020-Mar-09 21:39 
GeneralRe: How to use Pin
sashoalm20-Mar-09 21:46
sashoalm20-Mar-09 21:46 
GeneralRe: How to use Pin
p_196020-Mar-09 22:19
p_196020-Mar-09 22:19 
GeneralRe: How to use Pin
sashoalm20-Mar-09 22:22
sashoalm20-Mar-09 22:22 
GeneralRe: How to use Pin
p_196020-Mar-09 22:35
p_196020-Mar-09 22:35 
GeneralRe: How to use Pin
sashoalm20-Mar-09 22:39
sashoalm20-Mar-09 22:39 
QuestionProblem in compling through vc++ 2005 Pin
raj157620-Mar-09 19:16
raj157620-Mar-09 19:16 
AnswerRe: Problem in compling through vc++ 2005 Pin
Stuart Dootson21-Mar-09 0:37
professionalStuart Dootson21-Mar-09 0:37 
Questionconverting hex to image Pin
annese20-Mar-09 18:59
annese20-Mar-09 18:59 
GeneralRe: converting hex to image Pin
norish20-Mar-09 20:33
norish20-Mar-09 20:33 
GeneralRe: converting hex to image Pin
annese20-Mar-09 20:47
annese20-Mar-09 20:47 
GeneralRe: converting hex to image Pin
CPallini21-Mar-09 1:06
mveCPallini21-Mar-09 1:06 
GeneralRe: converting hex to image Pin
norish21-Mar-09 1:19
norish21-Mar-09 1:19 
GeneralRe: converting hex to image Pin
annese21-Mar-09 3:42
annese21-Mar-09 3:42 
GeneralRe: converting hex to image Pin
annese21-Mar-09 6:28
annese21-Mar-09 6:28 
QuestionCPU Time Pin
Max++20-Mar-09 18:33
Max++20-Mar-09 18:33 
AnswerRe: CPU Time Pin
N a v a n e e t h20-Mar-09 19:09
N a v a n e e t h20-Mar-09 19:09 

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.