I still love ya chrisy lad, even when you have been forsaken by the M$ machine. Bryce
MCAD --- To paraphrase Fred Dagg - the views expressed in this post are bloody good ones. --
Publitor, making Pubmed easy. http://www.sohocode.com/publitor
Our kids books :The Snot Goblin, and Book 2 - the Snotgoblin and Fluff
I shall test it when I submit my next blog entry.
"WPF has many lovers. It's a veritable porn star!" - Josh Smith
As Braveheart once said, "You can take our freedom but you'll never take our Hobnobs!" - Martin Hughes.
My blog | My articles | MoXAML PowerToys | Onyx
If that is so, then getch() is a possibility.
"Approved Workmen Are Not Ashamed" - 2 Timothy 2:15
"Judge not by the eye but by the heart." - Native American Proverb
Dear Lamas, Thank you for your reply. Actually that project is a mission critical backend application running in an ultrasound scanner product. Its build up on some alreay running frameworks. It uses a custom database. So no hope in optimizing those areas. But the application is performing some communication by using winsock. So if you can comment on network communication optimization it will be helpful for me. Regards, Jijo. ________________________________ Yesterday is history, Tomorrow is a mystery, But today is a present.
Dear David, Actually i was searching for this type API... Thank you very much... :) Regards, Jijo. ________________________________ Yesterday is history, Tomorrow is a mystery, But today is a present.
Unfortunately, that doesn't work. According to the MSDN, you can only use the /DEFAULTLIB, /EXPORT, /MERGE, /INCLUDE, and /SECTION linker options in a #pragma comment(linker,...).
Software Zen: delete this;
Dear Michael, Thank you very much for your advice. Its very much helpful. Regards, Jijo. ;) ________________________________ Yesterday is history, Tomorrow is a mystery, But today is a present.
Thanks for the reply. But the solution was not that. Just now i got the solution. I searched the header files for SetLayeredWindowAttributes constants and found that they are only defined if the _WIN32_WINNT is >= 0x0500 #if(_WIN32_WINNT >= 0x0500) #define WS_EX_LAYERED 0x00080000 #endif /* _WIN32_WINNT >= 0x0500 */ so i just added #define _WIN32_WINNT 0x0500 and it worked... ;) And i dont know whether its the right method. Regards, Jijo. ________________________________ Yesterday is history, Tomorrow is a mystery, But today is a present.