Search:

Type: Posts; User: The SharK

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    1,242

    yeah, maxorator ya, know when you program late...

    yeah, maxorator

    ya, know when you program late at night....

    actually I end up writing this instead of using SPACE:


    while ( value != 0 )
    {
    std::cin >> value;
  2. Replies
    3
    Views
    1,242

    Ending a loop, by pushing SPACE ?

    How do you end the loop, by pushing SPACE ?
    I've tried using the value 32.... doesn't work.



    while ( value == 32 || value < 0 )
    {
    std::cin >> value;

    if ( value < 0 )
  3. Replies
    5
    Views
    3,545

    Hi Salem In VS2005, you can turn on...

    Hi Salem


    In VS2005, you can turn on Hexadecimal display in different ways,
    not exactly like vs2003, but there's still no yellow post-it like note, when
    you hover over the memory window with...
  4. Replies
    5
    Views
    3,545

    Hi Salem Do you know how to set tool-tips on,...

    Hi Salem

    Do you know how to set tool-tips on, when debugging
    and viewing memory ?


    regards,


    The SharK
  5. Replies
    5
    Views
    3,545

    Hi Salem Yeah, I mean the: "tool-tip with the...

    Hi Salem

    Yeah, I mean the: "tool-tip with the slightly postit-note yellow tint to it" ;-)
  6. Replies
    5
    Views
    3,545

    "Hex to Decimal" Pop-up in VS2005

    How can you make VS2005 show "Hex to Decimal" -
    (in the memory display) - that which pops-up and follows the mouse...


    regards,

    >>>The SharK<<<
  7. Replies
    10
    Views
    1,363

    I see, thanks Frobozz ;-)

    I see, thanks Frobozz ;-)
  8. Replies
    10
    Views
    1,363

    Hi swgh Sure I could ! But that didn't...

    Hi swgh

    Sure I could !

    But that didn't answer the question... ;-)


    regards,
  9. Replies
    10
    Views
    1,363

    Floating Point Accuracy...

    I just wonder:

    When I run this program, why is it that the result is a little incorrect ?
    Like 0.2 * 1 == 0.20000000000000001
    and
    0.2 * 2 == 0.40000000000000002
  10. Replies
    5
    Views
    1,017

    Hi Salem Yep, that did the trick ;-) No...

    Hi Salem


    Yep, that did the trick ;-)

    No body, no function !


    regards,
  11. Replies
    5
    Views
    1,017

    Hi Ancient Dragon ! It say's in the text: ...

    Hi Ancient Dragon !

    It say's in the text:



    #include <iostream>

    using namespace std;
  12. Replies
    5
    Views
    1,017

    Link problem with Lesson 5: Switch case

    I have this piece of code, from Lesson 5: Switch case.

    When I compile it, I get this from VS 2005:

    1>------ Build started: Project: test, Configuration: Release Win32 ------
    1>Compiling......
  13. Replies
    3
    Views
    1,270

    Lesson 3: Loops

    #include <iostream>

    using namespace std;

    int main()
    {
    for ( int x = 0; x < 10; x++ )
    {
    cout << x << endl;
    }
  14. Replies
    11
    Views
    5,637

    Hello Jeremy G. When I saw your name, I...

    Hello Jeremy G.


    When I saw your name, I thought you might where this Jeremy G.

    http://www.jorgon.freeserve.co.uk/


    but according to your homepage which is down now, it doesn't seem to be...
  15. Thread: Ie 7 ...

    by The SharK
    Replies
    39
    Views
    7,733

    Poll: I am not quite fond of the layout.... But ok, it...

    I am not quite fond of the layout....
    But ok, it works ;-)
  16. Thread: Ie 7 ...

    by The SharK
    Replies
    39
    Views
    7,733

    Poll: I normally use FF, because it's convenient to use...

    I normally use FF, because it's convenient to use !

    I use IE7, when doing my netbank - they don't use FF for some
    security issues.
  17. Replies
    11
    Views
    5,637

    Some say: Real programmers only program in...

    Some say:

    Real programmers only program in BINARY !!!
  18. Replies
    11
    Views
    5,637

    Real Programmers.....in the old days

    While we're at humoristic stuff....

    Real Programmers - in the old days:

    Coded all day long, and when they got home from
    work they took a long break - say 5 minutes.

    Then they got on...
  19. Replies
    30
    Views
    8,755

    Thanks Prelude for clearing that up ! I don't no...

    Thanks Prelude for clearing that up !
    I don't no much about the C language, so I thought
    that it was "C++ language", and meant:
    increment the variable "C".

    Maybe by joke he meant that it was...
  20. Replies
    30
    Views
    8,755

    The "MEANING" of C++

    I just wrote from a Danish magazine about Bjarne Stroustrup when
    he invented C++.

    He wrote:

    So as he say, there's a little joke implied in the name ;-)
  21. Hi Richie T Oh, I see ! So I'll use: ...

    Hi Richie T


    Oh, I see !

    So I'll use:

    cin.ignore();
    cin.get();
  22. Console window waiting on cin.ignore() or cin.ignore(2)

    Why is it, that you have to use two lines like:

    cin.ignore;
    cin.ignore;

    or one time:

    cin.ignore(2);

    to make the console window wait for a keypress.
  23. Thread: Win32

    by The SharK
    Replies
    5
    Views
    1,086

    hmm... Win32 is not the same as C++ code. Win32...

    hmm... Win32 is not the same as C++ code.
    Win32 is the application programming interface (API), that enables applications to use the 32-bit instructions available on 80386 and higher processors.
    ...
  24. Replies
    21
    Views
    2,244

    Hi Mario F. hmm... what exactly is it I should...

    Hi Mario F.

    hmm... what exactly is it I should be seeing/noticeing :confused:

    My stdafx.h Header file looks like this:

    // stdafx.h : include file for standard system include files,
    // or...
  25. Replies
    21
    Views
    2,244

    Hi ConderMan Yes, I see the code doesn't...

    Hi ConderMan


    Yes, I see the code doesn't need it obviously.
    When I set "Not Using Precompiled Headers" and leave the reference to stdafx.h it compile fine.

    But the opposite, if I set it to...
Results 1 to 25 of 65
Page 1 of 3 1 2 3