Once in a while my exe size grows after building. For instance, my exe now is 28kb and once in a while after assembling and linking it will be about 36KB! What gives? Don't tell me this is a MS thing cause a "trick" in VB to get a "clean" (smaller) exe was to reboot and not run anything then compile or you might get garbarge from memory in the exe. Could it be garbage from memory or something?
Incremental linking? You can link with:
link /incremental:no bleh.obj
if this is the problem
link /incremental:no bleh.obj
if this is the problem