Originally posted by: tarun
hi!
i would like to know how i could use VC++ to decode an mpeg4 input. if any body knows it please mail me at tar4ever@tatanova.com
Originally posted by: Anatoly
Nice and helpful tip. Thanks a lot. Now I'm porting existing code to VC++.Net and noticed that the same approach doesn't work anymore. At least I couldn't map CPropertyPageEx derived calss messages using IDE's standard means (Control events).
Any ideas how to solve the problem?
Anatoly Smelkov
anatoly@smelkov.com
Originally posted by: Saheer
regards & thanks
i have a very complicated task..
i want to create thumb nail preview of html documents
in dialog based mfc application in vc
if u have any idea abt this subject plz mail me
at the following address
kpsaheer@hotmail.com
saheer
Originally posted by: Renjith Pandalam
Sems to so better which help to keep some good manners and easiness whle programming with VC++.and i felt is so cool and comfortable.keep it up and good code
ReplyOriginally posted by: AHAM
What's Wrong
When I started Vc++ 6.0
Message to me :
Msdev has caused an error in MFC42.DLL.
Please I want The Help
Thanks
Originally posted by: I.R.L.REDDY
HELLO FRIEND,
IAM R.L.REDDY FROM HYDERABAD.IAM INTERESTED TO BECOME A PROFESSIONAL IN VC++.PLEASE GIVE ME YOUR VALUABLE SUGGESTIONS WHICH HELPS ME A LOT
YOURS FAITHFULLY
RAMALINGAREDDY
VISUAL SOFT(INDIA)PVT LIMITED
HYDERABAD.
Originally posted by: Alexander
It's very usefull and buetefull!
Thank you.
Originally posted by: Rod Ball
Although this trick will fool it into letting you add handlers (which is awesome by the way), if you have overridden any of the handlers in your base class, they will not be called as a result but, if you are careful you will catch it. For example, if in your base class you have overridden OnSetActive so you have CBaseClass::OnSetActive and then you define the macro
#define CPropertyPage CBaseClass
BEGIN_MESSAGE_MAP(CDerivedClass, CPropertyPage)
#undef CPropertyPage
and then you use class wizard to overrided it in the derived class you will get:
BOOL CDerivedClass::OnSetActive()
{
return CPropertyPage::OnSetActive();
}
and your call to the overridden OnSetActive() is completely lost because it calls the CPropertyPage's OnSetActive(). So, be careful and make sure you correct these or else you may get undesired results.
Reply
Originally posted by: John Killingbeck
Nice idea to solve a problem. A more thorough way to fool the system is to copy, then comment out, the original line and comment the reason for the change. That way the original can be easily restored if an upgrade bombs the trick. You want to fool the system, not your co-workers or yourself.
ReplyOriginally posted by: chandra s s
i came across this problem,but i solved in the same way.but i saw this site today only.s/w giant microsoft is
having lot of bugs,because they are releasing products very quicly
nice idea indeed,to fool the products.