January 1st, 2012 08:29 PM
MS has agreed to reverse my charges! Yay!!
December 12th, 2011 12:26 AM
This is what I suspect: If the article is about the latest .NET technologies or C++11, I believe it will be published in a very short time, else it will only be published when CG has run out of .NET...
December 12th, 2011 12:19 AM
I also got it in my article a few times. I did not complain because I figure Brad will take care of it.
December 10th, 2011 02:51 AM
I got billed for US$68 for using 60+ million transactions (of Azure Storage) in less than 2 weeks!
Anyone here got charged over the limit in Azure 90 days trial?
MS refuse to waive my bill....
December 14th, 2010 06:28 PM
I guess you are right! I have dropped the idea of using the safe bool idiom. My library users can call Exists() method.
December 14th, 2010 03:55 AM
Hey guys, I have derived my class from the C++ safe bool idiom class from this page : The Safe Bool Idiom by Bjorn Karlsson
class Element : public safe_bool<>
{
public:
bool Exists() const;...
December 10th, 2010 02:09 AM
Watched Inception and find it not to be that fascinating.
Watched Expendables and find it average.
Watched Sorcerer's Apprentice, an ok show!
November 22nd, 2010 03:49 AM
Just watched Taken and the Last AirBender. Both are average films!
November 17th, 2010 07:50 PM
I watched Pan's Labyrinth, a Spanish movie (2006) with English subtitles after my coworker told me it was not a horror movie.
November 15th, 2010 07:16 PM
Knight and Day is very good!!!
November 15th, 2010 12:36 AM
Christmas with the Kranks
A 2004 movie. Kinda boring.
The last X'mas movie prior to this movie is A Christmas Carol. A CGI movie.
February 8th, 2010 07:40 AM
Hi HanneSThEGreaT, you saved my day! Thanks alot! :D
Have a nice day! ;)
February 8th, 2010 07:05 AM
Someone nicknamed amigo* just commented on my article here. I can neither see his comment nor reply him because his comment title is "download file" is unclickable. However, I know what he was asking...
February 3rd, 2010 09:32 PM
I like the new site revamp! :D
Today, I try to edit my old article with a minor update but all the textboxes are blank for me to fill them in, as if I am writing a new article.
Please kindly...
November 18th, 2009 07:13 PM
The OP can create a Graphics object with a image, instead of a DC. Draw with the Graphics object but the drawing would be "invisible" because the drawings are done on a image instead on a DC. Blit...
October 26th, 2009 10:55 PM
I usually hand-type my article in html in a text editor like Notepad++, then I copy and paste it into the CodeGuru Editor. The downsides of using a text editor, instead of a html editor, is that the...
October 13th, 2009 08:12 PM
I update my articles quite often with new article sections and new sample code to correct the previous bugs or new features and because CodeGuru articles are published to the homepage less frequently...
September 13th, 2009 08:39 PM
I watched Aliens in the Attic last Friday and X-Men Origins, Wolverine, on last Saturday. Aliens in the Attic is hilarious! Wolverine is not as good as I expected because my friends said it was...
September 11th, 2009 01:53 AM
May I request CG to enlarge the edit box for writing/editing the article? I hope that is trivial to do. Because even when the article length is quite short, there is still a lot of vertical scrolling...
August 21st, 2009 04:17 AM
There is a typo, remove the "only". Laserlight got it correct on what I actually meant. Just too bad, this for-each is not ISO-C++ compliant code.
August 21st, 2009 02:26 AM
Hi Skizmo, my post is meant to share this interesting discovery with other C++ developers, so there is no question in my post. :)
August 20th, 2009 11:22 PM
Hi guys, I just found out the for each syntax used in C++/CLI only works in a native C++ application(no /CLR switch). Below it is some sample code. It cannot work with raw arrays. I have tried it in...
August 20th, 2009 12:48 AM
If you code carefully in C++, your C++ code can be ported easily to x64 with a recompilation. And inline assembly, afaik, is not supported in x64 compilation.
August 16th, 2009 11:25 PM
I also had the same problem with debugging and OutputDebugString() starting from 2-3 weeks ago when MS updated my Visual Studio 2005 with KB971090 which is a 250MB update for 3 ATL vulnerabilities....