Click here to Skip to main content
15,891,951 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Can't select HBRUSH into device context Pin
enhzflep11-Sep-12 10:20
enhzflep11-Sep-12 10:20 
GeneralRe: Can't select HBRUSH into device context Pin
Alan Balkany11-Sep-12 10:23
Alan Balkany11-Sep-12 10:23 
GeneralRe: Can't select HBRUSH into device context Pin
enhzflep11-Sep-12 10:30
enhzflep11-Sep-12 10:30 
GeneralRe: Can't select HBRUSH into device context Pin
Alan Balkany13-Sep-12 10:47
Alan Balkany13-Sep-12 10:47 
QuestionFile download help Pin
Sunil P V10-Sep-12 1:04
Sunil P V10-Sep-12 1:04 
QuestionRe: File download help Pin
David Crow10-Sep-12 2:38
David Crow10-Sep-12 2:38 
AnswerRe: File download help Pin
Sunil P V10-Sep-12 19:04
Sunil P V10-Sep-12 19:04 
GeneralRe: File download help Pin
_Flaviu10-Sep-12 21:01
_Flaviu10-Sep-12 21:01 
I give some code :
C++
BOOL CYourDoc::DownloadFile(CString sAddress, CString& sResult)
{
	CString sTemp;
	BOOL bRet = FALSE;
	CInternetSession ISession;
	CInternetFile* pIFile = NULL;
	CMainFrame* pFrame = (CMainFrame*)AfxGetMainWnd();

	try
	{
		pIFile = (CInternetFile*)ISession.OpenURL(sAddress);
		while(pIFile->ReadString(sTemp))sResult += sTemp;
		bRet = TRUE;
	}
	catch(CException* pException)
	{
		pException->GetErrorMessage(sTemp.GetBuffer(255),255);
		sTemp.ReleaseBuffer();
		pException->Delete();
		pFrame->SetMessageText(sTemp);
	}

	if(pIFile)
	{
		pIFile->Close();
		delete pIFile;
	}

	ISession.Close();

	return bRet;
}

I this code, when something happened, throw an exception, there you can do whatever you want ... I hope this help you ...
QuestionRe: File download help Pin
David Crow11-Sep-12 3:06
David Crow11-Sep-12 3:06 
QuestionHow to set Image' Document Size ? Pin
002comp9-Sep-12 22:18
002comp9-Sep-12 22:18 
AnswerRe: How to set Image' Document Size ? Pin
pasztorpisti9-Sep-12 23:10
pasztorpisti9-Sep-12 23:10 
GeneralRe: How to set Image' Document Size ? Pin
002comp9-Sep-12 23:32
002comp9-Sep-12 23:32 
GeneralRe: How to set Image' Document Size ? Pin
Chris Losinger10-Sep-12 1:11
professionalChris Losinger10-Sep-12 1:11 
QuestionHighlighting some text in CEdit Pin
Hadi Dayvary9-Sep-12 21:57
professionalHadi Dayvary9-Sep-12 21:57 
AnswerRe: Highlighting some text in CEdit Pin
_Flaviu10-Sep-12 19:31
_Flaviu10-Sep-12 19:31 
GeneralRe: Highlighting some text in CEdit Pin
Hadi Dayvary10-Sep-12 22:33
professionalHadi Dayvary10-Sep-12 22:33 
QuestionNON-SCALAR TYPE CONVERSION!? Pin
Jorgmen9-Sep-12 8:58
Jorgmen9-Sep-12 8:58 
AnswerRe: NON-SCALAR TYPE CONVERSION!? Pin
enhzflep9-Sep-12 9:40
enhzflep9-Sep-12 9:40 
AnswerRe: NON-SCALAR TYPE CONVERSION!? Pin
pasztorpisti9-Sep-12 9:52
pasztorpisti9-Sep-12 9:52 
AnswerRe: NON-SCALAR TYPE CONVERSION!? Pin
Jorgmen9-Sep-12 10:52
Jorgmen9-Sep-12 10:52 
GeneralRe: NON-SCALAR TYPE CONVERSION!? Pin
enhzflep9-Sep-12 12:33
enhzflep9-Sep-12 12:33 
AnswerRe: NON-SCALAR TYPE CONVERSION!? Pin
Chuck O'Toole9-Sep-12 12:39
Chuck O'Toole9-Sep-12 12:39 
GeneralRe: NON-SCALAR TYPE CONVERSION!? Pin
pasztorpisti9-Sep-12 14:07
pasztorpisti9-Sep-12 14:07 
GeneralRe: NON-SCALAR TYPE CONVERSION!? Pin
pasztorpisti9-Sep-12 14:09
pasztorpisti9-Sep-12 14:09 
AnswerRe: NON-SCALAR TYPE CONVERSION!? Pin
«_Superman_»9-Sep-12 18:51
professional«_Superman_»9-Sep-12 18:51 

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.