Answer by BobbyShaftoe for Difference between racearound condition and deadlock
Think of a race condition using the traditional example. Say you and a friend have an ATM cards for the same bank account. Now suppose the account has $100 in it. Consider what happens when you attempt...
View ArticleAnswer by BobbyShaftoe for What does a "CALLBACK" declaration in C do?
The "CALLBACK" is a calling convention. There are other kinds of calling conventions. CALLBACK is the same as __stdcall.http://www.codeguru.com/cpp/cpp/cpp_mfc/callbacks/article.php/c10557Some more...
View ArticleAnswer by BobbyShaftoe for How do I get/set a winforms application's working...
So, you can change directory by just using Environment.CurrentDirectory = (sum directory). There are many ways to get the original executing directory, one way is essentially the way you described and...
View ArticleAnswer by BobbyShaftoe for How do I sort a vector of custom objects?
In your class, you may overload the "<" operator.class MyClass{ bool operator <(const MyClass& rhs) { return this->key < rhs.key; }}
View ArticleAnswer by BobbyShaftoe for Update live website from button?
Well some of this depends on your environment. It is easy to execute a process from ASP.NET if you have control of your environment and all of that. So you could run some custom program or script, etc....
View Article