Strange runtime-error

Hi there
I just realised I’ve quite a lot of errors when launching the tutorial app with the debugger:

Loaded 'ntdll.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\kernel32.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\msvfw32.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\user32.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\gdi32.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\winmm.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\advapi32.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\rpcrt4.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\shell32.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\msvcrt.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\shlwapi.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\comctl32.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\opengl32.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\glu32.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\ddraw.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\dciman32.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\ole32.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\usbkt1x1.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\usbkt1x1.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\usbkt1x1.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\usbkt1x1.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\usbkt1x1.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\usbkt1x1.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_a84f1ff9\comctl32.dll', no matching symbolic information found. JUCE v1.28 Loaded 'C:\WINDOWS\system32\msctf.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\SynTPFcs.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\version.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\setupapi.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\apphelp.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\clbcatq.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\comres.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\oleaut32.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\cscui.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\cscdll.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\mscms.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\winspool.drv', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\icm32.dll', no matching symbolic information found.
Sometimes the application stopps with an error (…user brakepoint … JuceApplication::unhadledExeption). But sometimes it runs without any problem.

Probably this problem has to do with the one I asked about in this thread…

I’m using VC 6 + PSDK Win Server 2003

Cheers

erm… those aren’t errors. It’s just telling you that those dlls have no debugging info in them.

If you get an exception though, tell me where it was! You’ll obviously have to turn on exception catching in the debugger so you can see where it happens.

Sory about that… I didn’t now that… just thoght that it has to do with the exeption, that is thrown in my app…

I’ll try to get the point into the program where the exeption is thrown. But it can take a while. Because the error appears unregurarly and I’m not used to the operation of the debugger.
And my school starts tomorow again… so I wont have a lot of time left for programming… :cry:

Anyway… thanks a lot for your help!!!

Hi guy’s

I’ve some news about my error…

Call stack output at the time when the error occurs:

COMPONENT! bad_cast::bad_cast(class bad_cast const &) + 71 bytes
COMPONENT! __RTDynamicCast + 67 bytes
juce::TooltipWindow::showFor(juce::Component * const 0x00b53d90) line 87 + 23 bytes
juce::TooltipWindow::timerCallback() line 167
juce::InternalTimerThread::handleMessage(const juce::Message & {...}) line 227 + 13 bytes
juce::MessageManager::deliverMessage(void * 0x00b5bd00) line 112 + 17 bytes
juce::juce_dispatchNextMessageOnSystemQueue(unsigned char 0x00) line 122
juce::MessageManager::dispatchNextMessage(const unsigned char 0x00, unsigned char * const 0x00000000) line 154 + 11 bytes
juce::MessageManager::runDispatchLoop() line 208 + 12 bytes
juce::JUCEApplication::enterMainApplicationLoop(juce::String * const 0x00b51920, juce::JUCEApplication * const 0x00b51950) line 197
juce::JUCEApplication::main(const char * const 0x00141f23, juce::JUCEApplication * const 0x00b51950) line 269 + 56 bytes
WinMain(int 0x00400000, int 0x00400000, const char * 0x00141f23, int 0x00400000) line 115 + 117 bytes
WinMainCRTStartup() line 198 + 54 bytes
KERNEL32! 7c816d4f()

Hereis a print-screen of the error-message

And herea print-screen of VC++ after the error-message.

I suppose the print-screens aren’t very helpfull…

At last hereyou get a link to my VC++ 6.0 Project. Just in case someone has a lot of time, is bored and want to find out more about this error…

As I wrote earlier in this thread I’ve not a lot of time for programming now. So I don’t need to have a complete working project now.
Anyway… I can life with this error for now… because it appears unregularly and seldom.

Thanks a lot for your help!

Stab in the dark here, but do you have RTTI disabled in VCE? I think I may have seen a similar exception when I forgot to enable it once.

I am getting linker errors like LNK2001 and LNK2019 whenever i migrate a sample project on QuicktimeMovieComponent from juce1.26 to juce 1.38.

Thank U