CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: CBasicNet

Page 1 of 48 1 2 3 4

Search: Search took 0.27 seconds.

  1. Replies
    12
    Views
    5,454

    Re: [NOOB QUESTION] Really large numbers in C++

    Boost has a large integer class: Boost Multiprecision
  2. Re: I got billed US$68 for using Azure Free Trial in less than 2 weeks!

    MS has agreed to reverse my charges! Yay!!
  3. Replies
    9
    Views
    2,075

    Re: [RESOLVED] Article review time

    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...
  4. Re: SPAMMER posting comments on my article : Creating an Outlook Add in Part 2

    I also got it in my article a few times. I did not complain because I figure Brad will take care of it.
  5. I got billed US$68 for using Azure Free Trial in less than 2 weeks!

    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....
  6. Re: Safe Boolean Idiom cannot compile with Visual C++ 10(2010)

    I guess you are right! I have dropped the idea of using the safe bool idiom. My library users can call Exists() method.
  7. Safe Boolean Idiom cannot compile with Visual C++ 10(2010)

    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;...
  8. Replies
    305
    Views
    115,076

    Re: What Movie are you watching Now ??...

    Watched Inception and find it not to be that fascinating.

    Watched Expendables and find it average.

    Watched Sorcerer's Apprentice, an ok show!
  9. Replies
    305
    Views
    115,076

    Re: What Movie are you watching Now ??...

    Just watched Taken and the Last AirBender. Both are average films!
  10. Replies
    305
    Views
    115,076

    Re: What Movie are you watching Now ??...

    I watched Pan's Labyrinth, a Spanish movie (2006) with English subtitles after my coworker told me it was not a horror movie.
  11. Replies
    305
    Views
    115,076

    Re: What Movie are you watching Now ??...

    Knight and Day is very good!!!
  12. Replies
    305
    Views
    115,076

    Re: What Movie are you watching Now ??...

    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.
  13. Re: Am I BitBlt'ing Bitmap correctly? wrong code?

    Did the OP call EndPaint()?
  14. Thread: Site Update

    by CBasicNet
    Replies
    104
    Views
    75,916

    Re: Site Update

    Hi HanneSThEGreaT, you saved my day! Thanks alot! :D

    Have a nice day! ;)
  15. Thread: Site Update

    by CBasicNet
    Replies
    104
    Views
    75,916

    Re: Site Update

    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...
  16. Thread: Site Update

    by CBasicNet
    Replies
    104
    Views
    75,916

    Re: Site Update

    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...
  17. Re: Writing gdiplus to graphics file (JPG or PNG)

    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...
  18. Replies
    42
    Views
    27,470

    Re: Why CP articles are better than CG!

    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...
  19. Replies
    42
    Views
    27,470

    Re: Why CP articles are better than CG!

    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...
  20. Replies
    305
    Views
    115,076

    Re: What Movie are you watching Now ??...

    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...
  21. Replies
    42
    Views
    27,470

    Re: Why CP articles are better than CG!

    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...
  22. Re: C++/CLI for each loop works for native C++ application!

    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.
  23. Re: C++/CLI for each loop works for native C++ application!

    Hi Skizmo, my post is meant to share this interesting discovery with other C++ developers, so there is no question in my post. :)
  24. C++/CLI for each loop works for native C++ application!

    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...
  25. Replies
    5
    Views
    1,036

    Re: __asm keyword

    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.
Results 1 to 25 of 1192
Page 1 of 48 1 2 3 4





Click Here to Expand Forum to Full Width

Featured