Yeah, I've heard of virii infecting your restore directory too. WFP stops virii from infecting files needed to boot though, so usually the AV can remove anything. But if you are running an AV, it...
I fixed up a computer yesterday for a co-worker. It had that torjan.downloader virus on it too (a long with sassar and about 30 others!). AVG cleaned it right out for me too.
I don't think this book teaches C++. It shows you MFC but already assumes you know how C++ works. If you have never programmed in C++ before, I question what kind of knowledge you will end up with...
If you want to hook an external application you must use a DLL. The reason is because an application can not access code outside of its address space, which includes code in your application. By...
Regardless of focus you need to use a keyboard hook. If you want to hook only with-in your application this can be done in an a function. If you want to hook system-wide you must implement it in a...
Regular expressions should be used to tokenize your input. Your syntactical and semantical analyzers should determine if the input is valid. Thus you'll want to tokenize the language into its...
using namespace justs imports everything from that namespace into the global namespace. It is in no way required, just a convience. Instead you would have to write
Its not possible. All languages C, C++, Delphi, VB, etc create a file. So you have no way of knowing which language the file is. Further more, there is more than one way of accomplishing most...
Assuming its freely distributable (I don't know why it wouldn't be), you can just copy the ocx onto your hard drive and register it. I also like the charting component that comes with Office 2000...