Click here to Skip to main content
15,920,896 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Problem with CAsynchsoket in mfc Pin
kakan17-Dec-05 11:19
professionalkakan17-Dec-05 11:19 
Questionwhy LINK 2001 ? I set the complier use the '/GR' Pin
shanzy17-Dec-05 2:59
shanzy17-Dec-05 2:59 
AnswerRe: why LINK 2001 ? I set the complier use the '/GR' Pin
Chris Losinger17-Dec-05 5:47
professionalChris Losinger17-Dec-05 5:47 
GeneralRe: why LINK 2001 ? I set the complier use the '/GR' Pin
shanzy18-Dec-05 15:24
shanzy18-Dec-05 15:24 
QuestionScroll bar Pin
sidniya17-Dec-05 2:12
sidniya17-Dec-05 2:12 
AnswerRe: Scroll bar Pin
Owner drawn1-Feb-06 19:04
Owner drawn1-Feb-06 19:04 
QuestionPreloaded symbols may not match Pin
emmatty17-Dec-05 2:10
emmatty17-Dec-05 2:10 
AnswerRe: Preloaded symbols may not match Pin
Udi Noach29-Dec-10 22:39
Udi Noach29-Dec-10 22:39 
In your debug settings, under Additional DLLs, did you happen to add the DLL so that you may set breakpoints in it before running the application? If so, you may have provided the wrong DLL path.

This can happen if you specify a Debug configuration path (e.g. "C:\...\Debug\MyDLL.dll") whereas the application loads the Release configuration of the same DLL (e.g. from "C:\...\Release\MyDLL.dll"). Although the two DLLs have the same name, they are loaded as separate modules into memory. The breakpoints are set in the module that never gets a chance to run.

This can also happen if your DLL is a COM server (e.g. implements an ActiveX control). Whether the Release or Debug version of the DLL gets loaded depends on the last settings made in the registry. You need to lookup the CLSID of the implemented ActiveX control (HKEY_LOCAL_MACHINE\SOFTWARE\CLSID\yourclsid) and see what InProcServer DLL is registered - the release or debug version. Then, in your application's debug settings, you need to synchronize the specified DLL path to this.

Hope this helps.
Questionfile/io networking Pin
thes3cr3t116-Dec-05 23:52
thes3cr3t116-Dec-05 23:52 
QuestionA C++ Homework Pin
losan16-Dec-05 23:45
losan16-Dec-05 23:45 
AnswerRe: A C++ Homework Pin
ThatsAlok17-Dec-05 0:06
ThatsAlok17-Dec-05 0:06 
AnswerHow do I get other people to do my homework problem for me? Pin
Kevin McFarlane17-Dec-05 8:43
Kevin McFarlane17-Dec-05 8:43 
Questionchar to store < 255 or use int Pin
oversight-[project-zero]16-Dec-05 21:47
oversight-[project-zero]16-Dec-05 21:47 
AnswerRe: char to store < 255 or use int Pin
tansey416-Dec-05 22:27
tansey416-Dec-05 22:27 
GeneralRe: char to store < 255 or use int Pin
oversight-[project-zero]16-Dec-05 23:08
oversight-[project-zero]16-Dec-05 23:08 
GeneralRe: char to store < 255 or use int Pin
Gerben Jongerius16-Dec-05 23:49
Gerben Jongerius16-Dec-05 23:49 
GeneralRe: char to store < 255 or use int Pin
oversight-[project-zero]17-Dec-05 0:00
oversight-[project-zero]17-Dec-05 0:00 
GeneralRe: char to store < 255 or use int Pin
tansey416-Dec-05 23:56
tansey416-Dec-05 23:56 
GeneralRe: char to store < 255 or use int Pin
oversight-[project-zero]17-Dec-05 0:41
oversight-[project-zero]17-Dec-05 0:41 
GeneralRe: char to store < 255 or use int Pin
toxcct17-Dec-05 2:10
toxcct17-Dec-05 2:10 
GeneralRe: char to store < 255 or use int Pin
toxcct17-Dec-05 2:07
toxcct17-Dec-05 2:07 
GeneralRe: char to store < 255 or use int Pin
Gerben Jongerius17-Dec-05 3:31
Gerben Jongerius17-Dec-05 3:31 
Questionhow can i get the ip of my system Pin
cancerion16-Dec-05 21:05
cancerion16-Dec-05 21:05 
AnswerRe: how can i get the ip of my system Pin
ThatsAlok16-Dec-05 21:52
ThatsAlok16-Dec-05 21:52 
Questiondirectshow sdk Pin
dolph_loe16-Dec-05 20:56
dolph_loe16-Dec-05 20:56 

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.