Search:

Type: Posts; User: dra

Page 1 of 8 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    36
    Views
    3,478

    My Vista machine hovers at around 1.5GB after...

    My Vista machine hovers at around 1.5GB after boot =/
  2. Thread: direct2D

    by dra
    Replies
    10
    Views
    4,226

    Direct2D is built on top of DirectX 10 (which...

    Direct2D is built on top of DirectX 10 (which isn't supported on XP), so no it won't work =/
  3. Replies
    2
    Views
    868

    Well first off, you need to indent your code...

    Well first off, you need to indent your code properly.

    Also, you are declaring records an array of ints, not Node
  4. Replies
    6
    Views
    3,211

    Not sure what you mean, but if your values are...

    Not sure what you mean, but if your values are stored in memory, then AND'ing will get you the desired effect.



    //check if 8th bit is set
    if(randomValue & 0x80)
    { //do stuff }
  5. Replies
    121
    Views
    10,033

    I'm crossing my fingers that MS makes it...

    I'm crossing my fingers that MS makes it available on MSDNAA. Not really keen on spending $200 to upgrade.
  6. Replies
    4
    Views
    1,178

    I'm just wondering, why are you against using VS...

    I'm just wondering, why are you against using VS for windows development? Arguably, it's the best tool out there for Windows development.
  7. Thread: pretty windows?

    by dra
    Replies
    7
    Views
    1,095

    If you want something more portable, have at look...

    If you want something more portable, have at look at Qt. I've toyed around with it in the past, and it's actually pretty straightforward. It's object-oriented, which I think makes creating GUIs...
  8. Replies
    4
    Views
    1,156

    Yes it has, thank you.

    Yes it has, thank you.
  9. Replies
    4
    Views
    1,156

    d'oh! How embarrassing! Thanks for the...

    d'oh! How embarrassing! Thanks for the observation.
  10. Replies
    4
    Views
    1,156

    Trouble with binary tree

    I'm currently playing around with binary trees, but it seems I can't even get my insert function to work correctly. When I try to compile my code, i get the following error:


    Unhandled exception...
  11. Replies
    3
    Views
    1,171

    It is generally considered good practice to use...

    It is generally considered good practice to use accessor functions to retrieve members from a class, rather than exposing them directly to the user.
  12. Replies
    3
    Views
    3,443

    There is no underlying "base" class that all...

    There is no underlying "base" class that all classes must inherit from in C++ as tabstop said. In MFC, classes like CDialog are provided as "foundations" that allow the programmer to build upon them...
  13. Thread: New Star Trek

    by dra
    Replies
    13
    Views
    10,978

    Poll: I've only seen the occasional episode from time...

    I've only seen the occasional episode from time to time on TV, so I'm not a Star Trek fan by any means. I wouldn't know how well it embodies the "soul" of the series or whatever, but as a Sci-Fi...
  14. Thread: Lost

    by dra
    Replies
    36
    Views
    5,110

    I'm a big LOST fan. I live in Hawaii so I get to...

    I'm a big LOST fan. I live in Hawaii so I get to see them filming around town from time to time. Have yet to run into one of the actors however :P
  15. Replies
    9
    Views
    2,076

    Depends on how big your screen is! :p

    Depends on how big your screen is! :p
  16. Replies
    6
    Views
    1,279

    ^ is the symbol for the logical operator XOR...

    ^ is the symbol for the logical operator XOR (exclusive OR)

    a ^= b is the same as a = a ^ b
  17. Replies
    23
    Views
    22,243

    Nope, but I've gotta say, that's some dedication!

    Nope, but I've gotta say, that's some dedication!
  18. Replies
    4
    Views
    3,062

    if (board[0] [0] == board[i] [i]) { ...

    if (board[0] [0] == board[i] [i])
    {
    same = false; break;
    }

    Here's your condition for major diagonal. See anything wrong?
  19. Replies
    10
    Views
    1,432

    Why is it necessary for you to call the...

    Why is it necessary for you to call the constructor again? If you've got code in the constructor of your body, why not wrap it up in a public member function that way you can call it again if you...
  20. Replies
    7
    Views
    8,789

    Try un4seen's BASS library. Un4seen...

    Try un4seen's BASS library.

    Un4seen Developments - 2MIDI / BASS / MID2XM / MO3 / XM-EXE / XMPlay
  21. Replies
    11
    Views
    1,942

    I took a quick look at the wowhead.com's client...

    I took a quick look at the wowhead.com's client and it seems that the real work is done by the ingame addon, which collects information as you play, and a separate client does the uploading. If the...
  22. Replies
    1
    Views
    1,788

    If the pop_back function removes the last...

    If the pop_back function removes the last element, then it wouldn't make sense to try and use it to remove an element that is somewhere in the middle. Use the erase member function instead.

    erase...
  23. Replies
    1
    Views
    1,376

    You cannot use sort() on a list because it...

    You cannot use sort() on a list because it doesn't support random access iterators. std::list has its own sort member function that you can use.
  24. Thread: dynamic array

    by dra
    Replies
    8
    Views
    1,954

    First, the above code does not compile, so you...

    First, the above code does not compile, so you may want to look it over again and fix any syntactical issues.

    Second, this line executes before you assign a value to n, which is bound the source...
  25. Replies
    4
    Views
    2,047

    If you need help w/ the sorting part, this is...

    If you need help w/ the sorting part, this is probably one of the best sorting tutorials I've found on the web.

    Eternally Confuzzled - The Art of Sorting
Results 1 to 25 of 178
Page 1 of 8 1 2 3 4