In the code you've shown, a variable for the three color components (RGB) of each pixel is initialized. You can modify values here, before they're added to the CurImaArr array (which is probably used...
Probably it's not an issue of your application but of the system tray itself, as icons from all other programs disappear as well. Maybe you can add a hook and create your icon when the taskbar is...
I think scrapage_online is using COleDateTime's Format member, not CString's (despite the actual name of the object, m_strTime, would make you think it's a string).
You can load the full wav file into a static buffer (usually, a small one) or use streaming and callback functions to load parts of the file as they are needed.
You can start from here:...
Well, you are assuming spicy_kid2000 has built his code on Visual C++ 6.
VC 7 updated both MFC and MSVCRT dlls so his program won't work if he doesn't ship them.
Also in the case of Win95/98/NT I'd...
Just make sure you're linking to the static MFC libraries (project settings dialog).
If you use dynamic linking you'll need to ship both MFC and MSVCRT dlls.
Well,
making them all owner draw controls can help; you could improve the repainting by updating only what really needs to be, and by not clearing the background when it's not needed.
Many tricks...
The official site for LAME is the following: http://lame.sourceforge.net
Some conversion from wav to mp3 can be achieved also by using the acm on windows 2000: acm
Ok,
if you want to modify directly the RGB values then I suggest you create a dib section.
Check out this site for any good articles on how to do that.
Hi,
you problem still isn't clear to me.. are you going to update the bitmap resource or do you want to change dinamically the content of a bitmap ? :eek: