Page 1 of 1

Error: An unsupported operation was attempted.

PostPosted: May 28, 2002 @ 6:17pm
by mago
hi everyone.
i truly hope that someone can help me with this problem. while coding in eMbedded VC++ i suddenly got error message that said "Assertion Failed! myapp: File dlgdata.cpp, Line 43". and if i choose release state instead of debugging i get the error in the topic.
i'm programming for PPC2002.

any help with this problem is needed!
thanx,
/mago

PostPosted: May 28, 2002 @ 9:02pm
by refractor
Well, what does the assert on line 43 of dlgdata.cpp check? (Post line 43 if you can't work it out).

Assertions are only inserted into debug code as run-time sanity-checks, so if it's checking something like a null pointer reference or a write alignment then your release code WILL bomb (like it does)... and the assert is giving you fair warning by occurring.

Cheers,

Refractor

PostPosted: May 29, 2002 @ 5:55am
by Dan East