Search:

Type: Posts; User: Uraldor

Page 1 of 18 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    26
    Views
    5,024

    Hi, I also live in Australia, i've lived in...

    Hi,

    I also live in Australia, i've lived in Nowra, Canberra, Sydney and now Brisbane. Before leaving school i also had the idea of going to ADFA to do computer science, but after actually looking...
  2. Replies
    12
    Views
    3,242

    BTW Toaster, your code indexes outside the array...

    BTW Toaster, your code indexes outside the array when x is 0
  3. Replies
    9
    Views
    1,807

    You may as well have asked the question: "Why...

    You may as well have asked the question:

    "Why doesn't this code render quake4 on my machine?" coz it yields the same answer.

    The answer is:

    "Because you haven't written any code to do it!"
  4. Poll: Yup, I am.

    Yup, I am.
  5. this happens a fair bit. is your program...

    this happens a fair bit. is your program accessing files?? maybe your IDE actually runs your exe with a different working directory which means that if you are opening files, relative path names wont...
  6. there could be quite a few reasons. the things to...

    there could be quite a few reasons. the things to focus on would be bounds checking, initialising your structures/arrays/pointers to zero, and cleaning up memory properly.

    if you are still stuck,...
  7. Replies
    1
    Views
    1,286

    You need to add 'accelerators' to your program....

    You need to add 'accelerators' to your program. have a look at LoadAccelerator() and TranslateAccelerator() in MSDN

    U.
  8. Thread: me can't think

    by Uraldor
    Replies
    8
    Views
    1,213

    #define ABS(x) ((x) < 0 ? -(x) : (x)) int...

    #define ABS(x) ((x) < 0 ? -(x) : (x))

    int GetClosestToZero(void)
    {
    int closest = myVector[0];
    for(int i = 1; i < myVector.size(); i++)
    {
    if(ABS(myVector[i]) <...
  9. Replies
    5
    Views
    1,372

    No worries. I appreciate your comments. Keep in...

    No worries. I appreciate your comments. Keep in mind that i have kinda flamed people before on this board. Those people I feel really deserve it. Like i said to you before, i helped you out because...
  10. Thread: decimal places

    by Uraldor
    Replies
    5
    Views
    2,138

    have a look at the second last post on this...

    have a look at the second last post on this page
  11. Replies
    8
    Views
    1,327

    i've seen that code somewhere before. did you...

    i've seen that code somewhere before. did you download that off a website?
  12. Replies
    5
    Views
    1,372

    Shadow12345 There's no reason anyone should...

    Shadow12345

    There's no reason anyone should laugh at you. You're obviously learning, and you have tried something yourself before asking for help. I salute you! Most of the posts on here are...
  13. Thread: debugger

    by Uraldor
    Replies
    18
    Views
    3,238

    OMG!! Klinerr1 really does have some competition...

    OMG!! Klinerr1 really does have some competition there doesn't he! :D

    Thanks for that, i needed a good laugh :D

    cheers
    U.
  14. Replies
    15
    Views
    2,805

    To answer your question.... if you can use...

    To answer your question.... if you can use arrays, then use them. They are much faster than vectors. Vectors are used alot when you need an array whose size changes all the time. It makes it easier...
  15. Replies
    15
    Views
    2,805

    I reckon you're solution is a bit of overkill. ...

    I reckon you're solution is a bit of overkill.

    How about this:


    #include <iostream>
    using namespace std;

    int ShowMoneyValue(int value)
    {
  16. Thread: debugger

    by Uraldor
    Replies
    18
    Views
    3,238

    fletch: have you noticed the typo in his location...

    fletch: have you noticed the typo in his location information?
  17. Thread: debugger

    by Uraldor
    Replies
    18
    Views
    3,238

    Klinerr1, you are a complete idiot. It's people...

    Klinerr1, you are a complete idiot. It's people like you that ruin BBs like this.
  18. Replies
    8
    Views
    5,016

    Are you stupid or something?? Take a look at...

    Are you stupid or something??

    Take a look at the name of the thread you started. That's where the bad language is.
  19. Replies
    2
    Views
    3,842

    I'm afraid that's part of the windows API. If...

    I'm afraid that's part of the windows API.

    If you want a function to that kind of thing in Linux, then why not write your own?? The wide string format is easy to replicate!

    good luck!
    U.
  20. Replies
    8
    Views
    5,016

    DO NOT use bad language in any part of your...

    DO NOT use bad language in any part of your posts. It's rude. There are people on this board who may be offended by your bad mouth, so please do not swear.

    Ultimately the reason why you're having...
  21. Thread: debugger

    by Uraldor
    Replies
    18
    Views
    3,238

    there is a program called lint that does that...

    there is a program called lint that does that kind of thing. it originally worked with C code, but i'm sure there's a C++ version somewhere.
  22. Replies
    5
    Views
    1,401

    hehe.. no problem. Keep it up, you're doing well....

    hehe.. no problem. Keep it up, you're doing well.

    U.
  23. Replies
    3
    Views
    1,496

    there are quite a few uses for pointers to...

    there are quite a few uses for pointers to functions. i use them in the games that i make for quick decision making

    rather than


    enum States { STATE1, STATE2, STATE3, ... };
    ...
  24. Replies
    5
    Views
    1,401

    Ah LouB, the things I do for you :D It...

    Ah LouB, the things I do for you :D

    It appeared to me that there weren't that many mistakes in what you did. here are a couple of things to remember.

    1) Keep your operators functioning the same...
  25. Replies
    2
    Views
    1,091

    well, that code instantiates them. and if they...

    well, that code instantiates them. and if they are instantiated they are initialised/constructed.

    U.
Results 1 to 25 of 426
Page 1 of 18 1 2 3 4