Search:

Type: Posts; User: eMMeMM

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    1,700

    "menu of that program"? Are you working with a...

    "menu of that program"? Are you working with a GUI application? Then you may need to clean up othe resources than just calling exit().
  2. Replies
    19
    Views
    5,117

    When it comes to beginner books, I'd recommend ...

    When it comes to beginner books, I'd recommend C++ Primer (by Lippman), followed by The C++ Standard Library: A Tutorial and Reference (by Josuttis).
  3. Replies
    8
    Views
    2,698

    1. No int main(). 2. Use of pre-standard and...

    1. No int main().
    2. Use of pre-standard and deprecated headers, etc.
  4. Replies
    5
    Views
    1,455

    Works very well. Infact, the original poster is...

    Works very well. Infact, the original poster is using Dev-C++, which ships with mingw, the win32 port of gcc.
  5. Replies
    4
    Views
    2,592

    [ nitpick ] You don't have to 'use' namespace...

    [ nitpick ]

    You don't have to 'use' namespace std if you are using non-standard C++ headers.

    [ /nitpick ]
  6. Replies
    4
    Views
    3,218

    Re: Simple C++ GUI programme does'nt run from dos

    From what I remember about Turbo C++ and its graphics, you need to copy those .BGI (Borland Graphics Interface) files to the same folder your .exe is present in. These files otherwise would be...
  7. That is slightly incorrect. if((Command[8]...

    That is slightly incorrect.



    if((Command[8] >= '1') && (Command[8] <= '9'))


    would be what'd do the trick.

    Also, if all digits ('0'-'9') are to be utilized, then std::isdigit (<cctype>)...
  8. Replies
    9
    Views
    1,944

    #include #include #include...

    #include <iostream>
    #include <sstream>
    #include <string>

    int main()
    {
    int myInt;
    std::cout << "Enter an int: "; std::cin >> myInt;
    std::stringstream ss; std::string s;
    ss << myInt;
  9. Replies
    1
    Views
    1,554

    http://msdn.microsoft.com/library/default.asp?url=...

    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconusingtrycatchblocktocatchexceptions.asp

    (you have to be more specific you are facing a particular problem.)
  10. Replies
    3
    Views
    899

    My recommendations: ...

    My recommendations:


    http://msdn.microsoft.com
    http://www.gotdotnet.com
    http://www.dotnetjunkies.com
  11. Thread: Translator

    by eMMeMM
    Replies
    8
    Views
    1,615

    He hasn't yet specified the exact 'problem' he...

    He hasn't yet specified the exact 'problem' he faced.
  12. Replies
    2
    Views
    998

    In addition, I'd definitely recommend MSDN...

    In addition, I'd definitely recommend MSDN as an online reference.
  13. Replies
    1
    Views
    1,171

    look up the AllocConsole and related APIs for...

    look up the AllocConsole and related APIs for win32 (check at http://msdn.microsoft.com)
  14. Thread: intellisense

    by eMMeMM
    Replies
    2
    Views
    1,688

    delay? (is my machine faster than yours?) ;)

    delay?

    (is my machine faster than yours?) ;)
  15. Replies
    4
    Views
    9,987

    Take a look at...

    Take a look at http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemDiagnosticsProcessClassTopic.asp and see if it helps..
  16. Replies
    1
    Views
    1,703

    Re: I need help with making a program which....

    Yes.

    Hint #1: Attempt your homework yourself.
    Hint #2: Get and Read a book.
  17. Replies
    3
    Views
    2,598

    Re: Convertion from struct to 'const char'

    Why not use a deque<yourstruct> instead of a deque<char> (which I suppose you are using)?

    On the other hand, you could do thequeue.push_back(yourstructobj.charmember); if you are using...
Results 1 to 17 of 17