Hi sure I'll share the fix.
All I did was in the Visual Studio 2005 Source Code of the IDE was Disable The Desktop Composition.
to do this I delayed the dwmapi.dll under the ide linker properties and to the additional libs I added dwmapi.lib
Next on the MainFrm.cpp I added #include <Dwmapi.h>
Then on CMainFrame::OnCreate I added DwmEnableComposition(DWM_EC_DISABLECOMPOSITION);
This was a hack I learned from someone who hacked Construct but I won't mention his name because people doesn't like him. I found this hack in one of the few source codes he released back in 2008.
Thank you and I hope this helps people.