Silicon in my Blood
Tuesday, February 28, 2006
Finding VRAM on the system
To find the VRAM ( or gpu , graphics card memory ) on your windows system:Start > Run > dxdiag
and then check the 'Display' tab. The "approx. total memory" will give the vram of your video card.
Friday, February 24, 2006
Ultimate ++
Harnessing the power of C++http://upp.sourceforge.net/index.html
http://digg.com/programming/Really_clever_C_GUI_toolkit_and_DE
Thursday, February 23, 2006
Thursday, February 09, 2006
Sunday, February 05, 2006
error C2660: 'CWnd::SendMessageA' : function does not take 4 arguments
Add scope resolution operator :: before SendMessage .Explanation given in this forum:
http://www.codeguru.com/forum/showthread.php?t=306091
Saturday, February 04, 2006
Friday, February 03, 2006
Thursday, February 02, 2006
LIBCMT.lib(crt0.obj) : error LNK2019: unresolved external symbol _main referenced in function _mainCRTStartup
MFC project (Visual studio VC7 .NET ) throws up the above error, when i try to access a library (.lib) through a function call.Solved the above error by :
Project > Properties > Linker > Input > Ignore Specific Library - libcmt.lib
Project > Properties > Linker > Command Line - /FORCE