Search:

Type: Posts; User: ysg

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Visual C++ 2010/2012 Express does not want to install on Vista Ultimate x64

    Before you ask, yes, upgrading to Win 7 is out of the question, I only have a license of this OS and for the moment there's nothing that I can do about it.

    Now, I've tried installing Visual C++...
  2. If you're having trouble with something like...

    If you're having trouble with something like that, I propose you run through a tutorial or a good C++ book.

    You'll need a better grasp of the language and how the underlying info flows in order to...
  3. Replies
    19
    Views
    1,874

    Meh, they're doing something fun (for themselves)...

    Meh, they're doing something fun (for themselves) and not hurting anyone in the process, so... yeah...
  4. Calm down. I did 50% of it for you. /** *...

    Calm down. I did 50% of it for you.

    /**
    * four-hundred-zeroes.cpp:
    */
    #include <iostream>

    void initArray(int largeArray[20][20])
    {
    for (int x = 0; x < 20; x++)
  5. Oooooh, I see where I went wrong. Gotcha. Thank...

    Oooooh, I see where I went wrong. Gotcha. Thank you.
  6. How weird. This is what I tried in Visual...

    How weird. This is what I tried in Visual Studio:

    /**
    * hello-world.cpp:
    */
    #include <iostream>
    #include <ios>
    #include <limits>
    #include <string>
    #include <sstream>
  7. funnydarkvador, here is a free/open source IDE...

    funnydarkvador, here is a free/open source IDE that you can use for C# development (very easy to setup, has an install wizard):
    SharpDevelop @ic#code

    Here are two tutorials to get you started:
    -...
  8. Thanks. I swear I tried this and VS said that...

    Thanks.

    I swear I tried this and VS said that I was doing something wrong. Probably made a stupid
    mistake and thought that it could not be done. Will need to pay closer attention in the
    future.
  9. :) Yup, and I tried that very example that I...

    :)

    Yup, and I tried that very example that I listed in VC++ 2010 and I got the following error:
  10. If you want to improve in C#, why are you writing...

    If you want to improve in C#, why are you writing C++ code?
  11. I know... but you can't do std::cin >>...

    I know... but you can't do std::cin >> stringObjectVariable. I did that as my first guess.
  12. Kinda hard to blame him, the language barrier (or...

    Kinda hard to blame him, the language barrier (or lack of adequate instructional material in his native language) makes learning C++ that much more difficult.

    I'll have to look at this at home.
  13. Is there a better way to do string input in C++ via standard input?

    This is my little piece of code. I'm a little rusty, so I don't remember
    how to do this 100%. But basically, the below example will allow to
    enter a string up to 100 chars, output it and just...
  14. I take it that when you run your program, nothing...

    I take it that when you run your program, nothing is printed out, yes?

    [edit]

    Is this a homework assignment?
  15. Replies
    3
    Views
    897

    Well, an array is nothing more than a chunk of...

    Well, an array is nothing more than a chunk of memory in the virtual memory of your machine.

    You can't really 'move' it, you'd have to copy it (use temps). If you foresee yourself doing this...
  16. Replies
    3
    Views
    930

    So... what's the mistake? What's the error? ...

    So... what's the mistake? What's the error? Compiler? Linker? Logic error?

    You're not giving enough information :) . Your code is only a piece of the puzzle.
  17. Replies
    4
    Views
    1,778

    I'll keep looking, thanks for your help. And...

    I'll keep looking, thanks for your help. And yes, there has to be a way :) .
  18. Replies
    4
    Views
    1,778

    Can I install VC++ Express and the MFC SDK? ...

    Can I install VC++ Express and the MFC SDK?

    [edit]

    Also, I'd like to continue to use VC++.
  19. Replies
    26
    Views
    8,062

    I'm waiting for my 3D metal printer :D . Or,...

    I'm waiting for my 3D metal printer :D .

    Or, wait for it, a 3D nano-scale printer :D . I get that and I won't need a grocery store or hardware store or pretty much anything else.
  20. Replies
    26
    Views
    8,062

    There are places. Granted, you won't be living...

    There are places. Granted, you won't be living next a metropolis, but then you get what you pay for ;) . Indian reservations are at the top of the list, but I'm not an indian, so I'll keep looking....
  21. Replies
    26
    Views
    8,062

    I thought about Alaska, but the idea of dealing...

    I thought about Alaska, but the idea of dealing with permafrost was a turn-off. I don't mind the arid environment as much, just need some drinking water (I wouldn't need much). I'm thinking of...
  22. Replies
    26
    Views
    8,062

    I've heard your state legislature wants to get...

    I've heard your state legislature wants to get rid of property taxes, yes? Honestly, I don't mind being taxed on the stuff I buy/win, but not so much on the stuff I own.

    How's the job market? :D
  23. Replies
    4
    Views
    1,778

    Visual C++ 2010, sans visual studio pro 2010?

    Hi, just got a book of visual c++ 2010 by ivor horton. Yes!

    However, it seems that I would need visual studio pro, at least, in order to work with MFC. Not so good.

    Now, color me weird, but...
  24. Replies
    26
    Views
    8,062

    That and 200 acres somewhere in the US where...

    That and 200 acres somewhere in the US where there are no property taxes and people leave me alone :) .
  25. Ok, I got another question. I compiled libxml...

    Ok, I got another question. I compiled libxml (configure + make + make install), but when I compile my app, the compiler can't find libxml/parser.h and libxml/tree.h. This is what I get:

    $ gcc...
Results 1 to 25 of 27
Page 1 of 2 1 2