Click here to Skip to main content
15,914,225 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: SDI File Open Pin
ShilpiP11-Aug-08 2:56
ShilpiP11-Aug-08 2:56 
GeneralRe: SDI File Open Pin
David Crow11-Aug-08 3:17
David Crow11-Aug-08 3:17 
GeneralRe: SDI File Open Pin
ShilpiP12-Aug-08 0:13
ShilpiP12-Aug-08 0:13 
QuestionRe: SDI File Open Pin
David Crow12-Aug-08 3:15
David Crow12-Aug-08 3:15 
QuestionWin32 to MFC Pin
NewVC++11-Aug-08 1:03
NewVC++11-Aug-08 1:03 
AnswerRe: Win32 to MFC Pin
Michael Schubert11-Aug-08 1:41
Michael Schubert11-Aug-08 1:41 
AnswerRe: Win32 to MFC Pin
David Crow11-Aug-08 3:18
David Crow11-Aug-08 3:18 
AnswerRe: Win32 to MFC Pin
ThatsAlok11-Aug-08 8:37
ThatsAlok11-Aug-08 8:37 
GeneralRe: Win32 to MFC [modified] Pin
NewVC++11-Aug-08 18:27
NewVC++11-Aug-08 18:27 
QuestionExtensibility support for an MFC application. Pin
Ahmed Charfeddine11-Aug-08 0:04
Ahmed Charfeddine11-Aug-08 0:04 
GeneralRe: Extensibility support for an MFC application. Pin
Matthew Faithfull11-Aug-08 2:18
Matthew Faithfull11-Aug-08 2:18 
QuestionRedraw PictureControl dont work... Pin
Laudenberg10-Aug-08 23:49
Laudenberg10-Aug-08 23:49 
AnswerRe: Redraw PictureControl dont work... Pin
Ahmed Charfeddine11-Aug-08 0:06
Ahmed Charfeddine11-Aug-08 0:06 
GeneralRe: Redraw PictureControl dont work... Pin
Laudenberg11-Aug-08 0:14
Laudenberg11-Aug-08 0:14 
GeneralRe: Redraw PictureControl dont work... Pin
Ahmed Charfeddine11-Aug-08 0:24
Ahmed Charfeddine11-Aug-08 0:24 
QuestionB+ tree update/delete/insert issue Pin
George_George10-Aug-08 23:36
George_George10-Aug-08 23:36 
QuestionRe: B+ tree update/delete/insert issue Pin
David Crow11-Aug-08 3:20
David Crow11-Aug-08 3:20 
AnswerRe: B+ tree update/delete/insert issue Pin
George_George11-Aug-08 3:31
George_George11-Aug-08 3:31 
GeneralRe: B+ tree update/delete/insert issue Pin
David Crow11-Aug-08 3:44
David Crow11-Aug-08 3:44 
GeneralRe: B+ tree update/delete/insert issue Pin
George_George11-Aug-08 3:52
George_George11-Aug-08 3:52 
GeneralRe: B+ tree update/delete/insert issue Pin
Matthew Faithfull11-Aug-08 4:47
Matthew Faithfull11-Aug-08 4:47 
GeneralRe: B+ tree update/delete/insert issue Pin
George_George11-Aug-08 19:50
George_George11-Aug-08 19:50 
QuestionWhat is wrong with my function? it keeps crashing when it gets to return. Pin
monsieur_jj10-Aug-08 23:36
monsieur_jj10-Aug-08 23:36 
Hi all

What is wrong with my function? it keeps crashing when it gets to return.

bool CUpdateServiceModule::DoCheckForProductUpdates(ns1__Update oUpdateCode, RMproduct* prd)
{

	iRet = m_pWebServiceSoap->__ns2__DoCheckForProductUpdates(pDoCheckForProductUpdates,pDoCheckForProductUpdatesResponse);
	
	switch(iRet)
	{
	case SOAP_OK :
		{
			if(pDoCheckForProductUpdatesResponse->DoCheckForProductUpdatesResult)
			{
			pDoGetLatestProduct->productName = pDoCheckForProductUpdates->productName;
			iRet = m_pWebServiceSoap->__ns2__DoGetLatestProduct(pDoGetLatestProduct,pDoGetLatestProductResponse);

			switch(iRet)
			{
			case SOAP_OK :
				{
					RMUpdates* update = new RMUpdates;
					break;
					return true;
				}
			default:
				{
				Log(GetSoapError());	
				}
			}
			}
		}
		
	default:
		{
		Log(GetSoapError());
		}
	}
	return false;
}


I am getting this error:

Unhandled exception at 0x004970b6 in UpdateService.exe: 0xC0000005: 
Access violation reading location 0xcdcdcdd5.


Please Advise

thanks,
Jayjay
AnswerRe: What is wrong with my function? it keeps crashing when it gets to return. Pin
_AnsHUMAN_ 10-Aug-08 23:46
_AnsHUMAN_ 10-Aug-08 23:46 
AnswerRe: What is wrong with my function? it keeps crashing when it gets to return. Pin
Jijo.Raj10-Aug-08 23:55
Jijo.Raj10-Aug-08 23:55 

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.