Clist is declared as typedef CList _lllist;
Shaileshhex
Posts
-
Crash when Clist is Destroyed in Vista -
Crash when Clist is Destroyed in VistaClist is declared as typedef CList _lllist;
-
Crash when Clist is Destroyed in VistaClist is declared as typedef CList _lllist; thanks :)
-
Crash when Clist is Destroyed in VistaI need some answers friend!
-
Crash when Clist is Destroyed in VistaHi All, I have a application developed in VS2005(MFC80).It uses a dll which is developed in VS2003(MFC71).This dll has a CList<> which crashes at the point when it is destroyed i.e when the destructor is called for the CList. This happens when i run my application on Vista OS. One Solution for the above problem is that I port the dll to VS2005.I tried porting the dll . It works fine without any crashes, but this solution is not feasible for my team. Can anyone suggest any other solution to the above problem. Thanks Shailesh
-
problem after .dll file changed to .ddl file in VS2005Its a bad style.. but it works in VS2003 and problems in VS2005. :)
-
problem after .dll file changed to .ddl file in VS2005Well the reason for naming DDL is non technical. Its only to recognize the dll file thats the project requirement which we cannot change. thanks
-
problem after .dll file changed to .ddl file in VS2005Hi, I am migrating my code to VS2005 from VS2003. We have certain components which are .dll files but they are named as .ddl files .When i migrate to VS2005 and i open my client exe in dependency walker than the dependant .ddl file is shown as unavailable(with a question mark) in the walker. this mainly happens coz it has been renamed from .dll to .ddl(as per requirement). My question is , why does this happen in vs2005 only and how do i solve this?. Will it create problem at runtime?. NOTE: in VS2003 the file was seen available in the dependency walker. Replies are welcome Regards, Shailesh H
-
Unhandled Exception.Hey, Me too facing the same problem... in ProcessShellCommand as u faced... did u get any soln on this .. plz let me know regards :)
-
ProcessShellCommand() gives unhandled exception in VS2005THis problem happens for my VS2003 code after i port it to VS2005
-
ProcessShellCommand() gives unhandled exception in VS2005HI all , Well i definitely do a ParseCommandLine(cmdInfo); and later if (!ProcessShellCommand(cmdInfo)) return FALSE; cmdInfo members are as follows m_nShellCommand = FileNew m_bRunEmbedded = 0; m_bRunAutomated = 0; m_bShowSplash =1; Rest all string members of cmdInfo are empty Callstack at unhandled exception msvcr80.dll!_crt_debugger_hook(int _Reserved=2015552886)
-
ProcessShellCommand() gives unhandled exception in VS2005ProcessShellCommand() call causes an unhandled exception in VS2005.. Anybody has solution plz reply.. THanks :-)
-
OnKillfocus on closing Dialog not called --- PLZ GIVE SUGGESTION!!I have a few controls like button , list box and combo box on my dialog in a dialog based application. I use tab key to change focus on controls hence the OnkIllFocus for the controls is executed as i tab . But When i close the dialog OnkIllFocus for the last control having the focus is not executed.I want to know the reason why this happens . I expect the current control having focus shud lose Focus on closing Dialog hence OnkIllFocus for that control shud be called.If i am wrong plz correct me.
-
Event programming related problemHello This is related to event programming for a pocket pc 2002 application..…here I m listening to a event using the WaitForMultipleObjects() call…also ther r 2 events ITC_APP_EVENT_RIGHTSCAN , ITC_APP_EVENT_LEFTCAN e for the right btn and the left button on a pocket pc device. We have 2 pocket pc devices ..1st with Win CE 3.0 and the 2nd has Win CE 4.2…. On 4.2 device my exe works fine On 3.0 device when I run the same exe…it does not pick the event for the button press (button on the right side of the device) I checked the registry I found that ITC_APP_EVENT_RIGHTSCAN event was not present in the registry of device 3.0. But the same event was present in the 4.2 device's (WIN CE 4.2) registry So I added this event in the registry of 3.0 device…but still it does not pick the event, the event I think does not get signaled (i.e the WaitForMultipleObjects() call does not work –). Is it that the WIN CE 3.0 might use a different event other than ITC_APP_EVENT_RIGHTSCAN? If that's the case than wher can I find the correct event for the button press event. I checked settings..but nothing I found bye
-
WaitForMultipleObjectshi Mark... I found that the events ITC_APP_EVENT_RIGHTSCAN etc ..were not present in the devices registry...so i added these events ..but still that event does not get signalled .... my device uses WIN CE 3.0...but the event gets signalled for another device which has WINCE 4.2 does this mean that 3.0 does not recognise ITC_APP_EVENT_RIGHTSCAN??...if so then how do i find which is the correct event thanks
-
WaitForMultipleObjectshi... Thanks for ur replies... i think ur right may b the event is not signalled.... code is as below aslso its not my code and, event created is ITC_APP_EVENT_RIGHTSCAN...i have no idea where ITC_APP_EVENT_RIGHTSCAN comes from..... hCenterDelta=CreateEvent(NULL, FALSE, FALSE, _T("ITC_APP_EVENT_CENTERSCAN")); hCenterState=CreateEvent(NULL, TRUE, FALSE, _T("ITC_APP_STATE_CENTERSCAN")); hRightDelta=CreateEvent(NULL, FALSE, FALSE,_T("ITC_APP_EVENT_RIGHTSCAN")); hRightState=CreateEvent(NULL, TRUE, FALSE, _T("ITC_APP_STATE_RIGHTSCAN")); hLeftDelta=CreateEvent(NULL, FALSE, FALSE, _T("ITC_APP_EVENT_LEFTSCAN")); hLeftState=CreateEvent(NULL, TRUE, FALSE, _T("ITC_APP_STATE_LEFTSCAN")); hIRDAReset=CreateEvent(NULL, TRUE, FALSE, _T("NOTIFICATION_EVENT_WAKEUP")); h = CreateEvent( NULL, TRUE, FALSE, EVENTNAME_KEYBOARD_CHANGE ); if ( h != INVALID_HANDLE_VALUE ) { SetEvent( h ); CloseHandle( h ); } // end if //the closed event hClosed = CreateEvent(NULL,TRUE,FALSE,_T("RfidCloseEvent")); HANDLE hObjectList[] = { hClosed, hCenterDelta, hRightDelta, hLeftDelta, hIRDAReset }; while (1) { DWORD wc = WaitForMultipleObjects( sizeof(hObjectList)/sizeof(HANDLE), // number of handles in array hObjectList, // object-handle array FALSE, // wait option (DWORD) INFINITE // time-out interval ); //THE breakpoint holds at this point... switch ( wc) { WAIT_OBJECT_0 + 2: //Center button if (WaitForSingleObject(hRightState,0)==WAIT_OBJECT_0) { //some code } etc..etc.. } } LET ME KNOW UR THOUGHTS bye
-
WaitForMultipleObjectsI have a call to WaitForMultipleObjects() which waits for any of 4 events to happen ...but the statements after the call to WaitForMultipleObjects() are not executed. i am not able to debug and get wat value is returned by the call WaitForMultipleObjects() thanks in advance
-
CString to TCHARhi.. try this out... TEXT("string");
-
Platform Manager server failed error!Hi all, I have a Embeded VC++ (4.0) application , which builds fine to run on a device having Win CE 4.2 , But when i try to build the same workspace to run on a device having Win CE 3.0. I get a "Platform Manager server failed error". Do i need to do some configuration settings for the Platform Manager under Tools Menu? What settings do i need to do?. Thanks (in advance):)
-
Platform Manager error!!Hi all, I have a Embeded VC++ (4.0) application , which builds fine to run on a device having Win CE 4.2 , But when i try to build the same workspace to run on a device having Win CE 3.0. I get a "Platform Manager server failed error". Do i need to do some configuration settings for the Platform Manager under Tools Menu? What settings do i need to do?. Thanks (in advance):)