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

C / C++ / MFC

 
Generalbeginner question : DocView Pin
Jerome Conus11-Dec-01 2:57
Jerome Conus11-Dec-01 2:57 
GeneralRe: beginner question : DocView Pin
Michael Dunn11-Dec-01 8:02
sitebuilderMichael Dunn11-Dec-01 8:02 
GeneralXP Buttons and Dropdowns Pin
11-Dec-01 2:33
suss11-Dec-01 2:33 
GeneralHollow in MFC. Please help. Pin
The_Server11-Dec-01 1:39
The_Server11-Dec-01 1:39 
GeneralRe: Hollow in MFC. Please help. Pin
Alvaro Mendez11-Dec-01 4:19
Alvaro Mendez11-Dec-01 4:19 
GeneralRe: Hollow in MFC. Please help. Pin
Michael Dunn11-Dec-01 8:04
sitebuilderMichael Dunn11-Dec-01 8:04 
GeneralUsing standard ActiveX (VC++ 6.0) Pin
DABMSC10-Dec-01 23:55
DABMSC10-Dec-01 23:55 
GeneralRe: Using standard ActiveX (VC++ 6.0) Pin
Michael P Butler11-Dec-01 0:21
Michael P Butler11-Dec-01 0:21 
Assuming you mean DISP_E_MEMBERNOTFOUND and not DIPS_E_MEMBERNOTFOUND.

MSDN states the following,


Debugging Output You Can Safely Ignore
When you're debugging a control, you may get a series of messages in Visual C++'s debugging window. Although it's not documented anywhere, some of these messages can be safely ignored. For instance, when I debug the StopLite control in the test container using Visual C++ version 4.2, I get the following:

Loaded symbols for 'C:\WINNT35\system32\MFC42.DLL'
LDR: WARNING ! MAJOR PERFORMANCE LOSS in TSTCON32.EXE
LDR: Dll MFC42D.DLL base 5f400000 relocated due to collision with
C:\WINNT35\System32\MFC42.DLL
Loaded symbols for 'C:\WINNT35\system32\MFC42D.DLL'
Loaded symbols for 'C:\WINNT35\system32\MSVCRTD.DLL'
Loaded symbols for 'C:\WINNT35\system32\MFCO42D.DLL'
Warning: constructing COleException, scode = DISP_E_MEMBERNOTFOUND ($80020003).
First-chance exception in TSTCON32.EXE (MFCO42D.DLL): 0xE06D7363: Microsoft C++ Exception.

The first line is just notification that the debugging symbols for the release version MFC DLL were loaded when the test container, which uses the release version of the MFC DLL, was loaded.

The second and third lines (which begin with "LDR:") warn that the debugging version of the MFC DLL (used by the StopLite control) had to be relocated in my address space because it conflicted with the release version of the same DLL (which is being used by the test container). Although this means that it took a little longer to load the MFC DLL, it isn't a big deal because it only happens when you're debugging in the test container. You can ignore these messages. (Since Visual Basic apps don't use the MFC DLL at all, you won't get this message if you use a Visual Basic app as your test container.)

The next three lines are notifications that debugging symbols have been loaded.

The last two lines are notification that an exception has been thrown because the test container didn't provide a Color property to be read. This is okay, because we've provided a default value for the property. You won't get this error if you use a container that provides the property, such as a Visual Basic application.

In Visual C++ version 4.1, the only line I got was a warning about the exception for properties that couldn't be loaded from the container.

First-chance exception in TSTCON32.EXE (MFC40.DLL): 0xE06D7363: Microsoft C++ Exception.

Depending on how your container handles threads, you may also get occasional messages about threads exiting. You don't need to worry about these, either.



Michael Smile | :)
QuestionHow do I change the page layout (page orientation) during printing? Pin
Youknowme10-Dec-01 23:14
Youknowme10-Dec-01 23:14 
AnswerRe: How do I change the page layout (page orientation) during printing? Pin
Bernhard10-Dec-01 23:59
Bernhard10-Dec-01 23:59 
GeneralStupid question answered thousand times Pin
Krouer10-Dec-01 22:51
Krouer10-Dec-01 22:51 
GeneralRe: Stupid question answered thousand times Pin
moliate11-Dec-01 2:09
moliate11-Dec-01 2:09 
General'Pushing' a thread... Pin
Mr.Freeze10-Dec-01 22:38
Mr.Freeze10-Dec-01 22:38 
GeneralRe: 'Pushing' a thread... Pin
Krouer10-Dec-01 22:45
Krouer10-Dec-01 22:45 
GeneralRe: 'Pushing' a thread... Pin
Nish Nishant11-Dec-01 0:38
sitebuilderNish Nishant11-Dec-01 0:38 
GeneralRe: 'Pushing' a thread... Pin
markkuk11-Dec-01 0:52
markkuk11-Dec-01 0:52 
GeneralRe: 'Pushing' a thread... Pin
Michael Dunn11-Dec-01 8:22
sitebuilderMichael Dunn11-Dec-01 8:22 
GeneralRe: 'Pushing' a thread... Pin
Mr.Freeze11-Dec-01 13:35
Mr.Freeze11-Dec-01 13:35 
Generallooking for panacea....how invoke method of Server in a Container Pin
Ahmad9910-Dec-01 22:24
Ahmad9910-Dec-01 22:24 
GeneralCrystal Reports Pin
imrancs_qau10-Dec-01 21:50
imrancs_qau10-Dec-01 21:50 
Questionhow to Run Visual c++ program in another computer that haven't visual c++? Pin
nemati10-Dec-01 21:23
nemati10-Dec-01 21:23 
AnswerRe: how to Run Visual c++ program in another computer that haven't visual c++? Pin
Sito Dekker10-Dec-01 22:49
Sito Dekker10-Dec-01 22:49 
AnswerRe: how to Run Visual c++ program in another computer that haven't visual c++? Pin
Joaquín M López Muñoz10-Dec-01 23:12
Joaquín M López Muñoz10-Dec-01 23:12 
AnswerRe: how to Run Visual c++ program in another computer that haven't visual c++? Pin
Nish Nishant11-Dec-01 0:40
sitebuilderNish Nishant11-Dec-01 0:40 
Questionhow to Visual c++ program in another computer that haven't visual c++? Pin
nemati10-Dec-01 21:22
nemati10-Dec-01 21:22 

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.