Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. What happened to the int 2 str article?

What happened to the int 2 str article?

Scheduled Pinned Locked Moved The Lounge
c++question
21 Posts 10 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • C Chris Maunder

    Brad Jennings wrote: "You're mom is nice. Mind if I go out with her?" That's so wrong... :) cheers, Chris Maunder

    B Offline
    B Offline
    Brad Jennings
    wrote on last edited by
    #12

    Chris Maunder wrote: That's so wrong... ...and so good...;P Brad Jennings "You're mom is nice. Mind if I go out with her?" - Jörgen Sigvardsson

    C 1 Reply Last reply
    0
    • B Brad Jennings

      Chris Maunder wrote: That's so wrong... ...and so good...;P Brad Jennings "You're mom is nice. Mind if I go out with her?" - Jörgen Sigvardsson

      C Offline
      C Offline
      Code4Food
      wrote on last edited by
      #13

      MILF -American Pie ;) Code4Food ---- "There is no try; only do or do not" -Yoda

      B 1 Reply Last reply
      0
      • C Code4Food

        MILF -American Pie ;) Code4Food ---- "There is no try; only do or do not" -Yoda

        B Offline
        B Offline
        Brad Jennings
        wrote on last edited by
        #14

        Code4Food wrote: MILF -American Pie Oh yeah...all right.:cool: Brad Jennings "You're mom is nice. Mind if I go out with her?" - Jörgen Sigvardsson

        1 Reply Last reply
        0
        • C Chris Maunder

          Brad Jennings wrote: "You're mom is nice. Mind if I go out with her?" That's so wrong... :) cheers, Chris Maunder

          J Offline
          J Offline
          Jorgen Sigvardsson
          wrote on last edited by
          #15

          Chris Maunder wrote: That's so wrong It's only wrong if you go out with your own mother. :) -- Let me burn you down.

          1 Reply Last reply
          0
          • C Chris Maunder

            'Beginner' articles are for beginners, not necessarily by beginners. cheers, Chris Maunder

            I Offline
            I Offline
            Ian Darling
            wrote on last edited by
            #16

            Chris Maunder wrote: 'Beginner' articles are for beginners, not necessarily by beginners. Is there an article on how to write good articles? It might be something you post in big red letters at the top of the article posting thing (or whatever it is you do, I haven't written any articles :-)) I had an idea for an article, but I thought it was too silly: "A practical introduction to web services in .NET" , drawing on RFC 2795[^] as inspiriation for what the example service(s) did :-D. -- Ian Darling

            C D 2 Replies Last reply
            0
            • I Ian Darling

              Chris Maunder wrote: 'Beginner' articles are for beginners, not necessarily by beginners. Is there an article on how to write good articles? It might be something you post in big red letters at the top of the article posting thing (or whatever it is you do, I haven't written any articles :-)) I had an idea for an article, but I thought it was too silly: "A practical introduction to web services in .NET" , drawing on RFC 2795[^] as inspiriation for what the example service(s) did :-D. -- Ian Darling

              C Offline
              C Offline
              Chris Maunder
              wrote on last edited by
              #17

              Marc Clifton has written an excellent guide[^]. cheers, Chris Maunder

              I 1 Reply Last reply
              0
              • C Chris Maunder

                Marc Clifton has written an excellent guide[^]. cheers, Chris Maunder

                I Offline
                I Offline
                Ian Darling
                wrote on last edited by
                #18

                Chris Maunder wrote: Marc Clifton has written an excellent guide :cool: Good read that. -- Ian Darling

                1 Reply Last reply
                0
                • I Ian Darling

                  Chris Maunder wrote: 'Beginner' articles are for beginners, not necessarily by beginners. Is there an article on how to write good articles? It might be something you post in big red letters at the top of the article posting thing (or whatever it is you do, I haven't written any articles :-)) I had an idea for an article, but I thought it was too silly: "A practical introduction to web services in .NET" , drawing on RFC 2795[^] as inspiriation for what the example service(s) did :-D. -- Ian Darling

                  D Offline
                  D Offline
                  Daniel Turini
                  wrote on last edited by
                  #19

                  Ian Darling wrote: Is there an article on how to write good articles? It might be something you post in big red letters at the top of the article posting thing (or whatever it is you do, I haven't written any articles ) One of the things I've learned on The Lounge, is that messages written on red letters are promptly ignored. ORACLE One Real A$#h%le Called Lary Ellison

                  I 1 Reply Last reply
                  0
                  • C Code4Food

                    I was going to incorporate that into some code I am writing in house... :) You guys really bashed the crap out of that one. I almost felt bad for him for writing it and posting it. Maybe he didn't know about _itoa and such, and thought he created the best thing since sliced bread! I hope he is not depressed, but reading once through "C++ for dummies" does not make you a programmer, you need to at least read it twice. We will probably see him in the VB site now. Code4Food ---- "There is no try; only do or do not" -Yoda

                    B Offline
                    B Offline
                    Bernhard
                    wrote on last edited by
                    #20

                    .. because in austria (and in germany) the sign for the decimal point is "," (in most other countries "."). the problem is that it depends on the locale setting. now we really had some strange effects with the locale's setting (connectiong to our database changed these settings, due to an error in a lib). so we wrote something like: (without looking into the code)

                    string s = any_number;
                    s.change_all_dots_to_commas();
                    d1 = atof (s);
                    s.change_all_commas_to_dots();
                    d2 = atof (s);
                    if (any_number > 0)
                      return max (d1,d2)
                    else
                      return min (d1,d2)
                    

                    hope you get the point. and it makes sense... cause now all our programs work perfectly.


                    "I'm from the South Bronx, and I don't care what you say: those cows look dangerous."
                    U.S. Secretary of State Colin Powell at George Bush's ranch in Texas

                    1 Reply Last reply
                    0
                    • D Daniel Turini

                      Ian Darling wrote: Is there an article on how to write good articles? It might be something you post in big red letters at the top of the article posting thing (or whatever it is you do, I haven't written any articles ) One of the things I've learned on The Lounge, is that messages written on red letters are promptly ignored. ORACLE One Real A$#h%le Called Lary Ellison

                      I Offline
                      I Offline
                      Ian Darling
                      wrote on last edited by
                      #21

                      Not if you make them big enough :-) -- Ian Darling

                      1 Reply Last reply
                      0
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      • Login

                      • Don't have an account? Register

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • World
                      • Users
                      • Groups