Search:

Type: Posts; User: The SharK

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    1,251

    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,251

    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,619

    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,619

    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,619

    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,619

    "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,372

    I see, thanks Frobozz ;-)

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

    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,372

    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,024

    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,024

    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,024

    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,286

    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,716

    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,903

    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,903

    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,716

    Some say: Real programmers only program in...

    Some say:

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

    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,904

    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,904

    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,091

    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,254

    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,254

    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