Search:

Type: Posts; User: Dash_Riprock

Page 1 of 2 1 2

Search: Search took 0.00 seconds.

  1. Ill try that and see if I run into any problems,...

    Ill try that and see if I run into any problems, thanks.
  2. How to set a "default" return value for a class?

    How do I set what an object returns when just the object name is used? For instance, a string will return a value when just the name is used, without using any particular function. Is this done by...
  3. Replies
    6
    Views
    3,509

    ok, thanks alot. I got the name from that.

    ok, thanks alot. I got the name from that.
  4. Replies
    6
    Views
    3,509

    So does anyone have any help? Specifically I...

    So does anyone have any help?
    Specifically I need to know the class name of the default console window when you open a c++ prog in explorer.
  5. Replies
    6
    Views
    3,509

    Sorry, Im not too familiar with this. How do I...

    Sorry, Im not too familiar with this. How do I find what the window class is?
  6. Replies
    6
    Views
    3,509

    alternate to FindWindow() ?

    Is there a better way to find a window's hWnd than FindWindow()? FindWindow uses the window's actual caption to find its hwnt, which isnt working out.
    Preferably something that usesa pid or...
  7. Replies
    7
    Views
    1,321

    I will try those out, thanks :)

    I will try those out, thanks :)
  8. Replies
    7
    Views
    1,321

    Yes I wanted to make my own implement it into a...

    Yes I wanted to make my own implement it into a program. Thats why I posted it on the programming board :p

    Does anyone know how I would go about doing this? I have no idea where to start. I dont...
  9. Replies
    7
    Views
    1,321

    I dont mean to share the file, I mean to actually...

    I dont mean to share the file, I mean to actually make the local computer open and run the program that is already on it, as if it had been opened when you were physically using the computer.
    ...
  10. Replies
    7
    Views
    1,321

    execute program on local comp

    How could I make a different computer on a LAN open a specific file? I have admin access to both.
  11. Replies
    6
    Views
    2,017

    Alright, Ill try it out.

    Alright, Ill try it out.
  12. Replies
    6
    Views
    2,017

    multi threaded program

    First off, how can I have a program running two different pieces of code simultaneously?

    Secondly, how could I (if possible) tell the program to run the two different pieces of code on different...
  13. Im not sure what you mean- by default, it will...

    Im not sure what you mean- by default, it will use a tab system when you open a file when one is already open. If it dosent, it is probably adjustable in the options.
  14. Replies
    21
    Views
    2,095

    why dont you just int blank; cin >> blank; ...

    why dont you just

    int blank;
    cin >> blank;

    before the return line?
  15. Replies
    11
    Views
    1,236

    I might be wrong, but I thought functions were...

    I might be wrong, but I thought functions were supposed to go before main in the code?
  16. Replies
    9
    Views
    1,322

    Get the distance from your x to the target's x...

    Get the distance from your x to the target's x and square it. Now do the same for y, and then get the square root of the sum of the 2 values. This will get you the distance from you to the target.
  17. Replies
    6
    Views
    1,053

    I tried it with a vector and it works perfectly...

    I tried it with a vector and it works perfectly after the first try. Thanks alot.
  18. Replies
    6
    Views
    1,053

    The array always turns out to be the right...

    The array always turns out to be the right length, so even if I do change it, it isnt the scource of the problem.

    I read a tutorial somewhere that said if you used the "new" operator with a...
  19. Replies
    6
    Views
    1,053

    The semicolon is there, I just accidentally...

    The semicolon is there, I just accidentally deleted it when trimming down the code. I just put it back in.
    And I dont know what you mean by it isnt initialized- isnt it initialized in the line...
  20. Replies
    6
    Views
    1,053

    need help w/ number converter prog.

    This program is suppoded to get an input of any number in any number system with a base from 2(binary) to 62, which includes all digits plus all capital and then all lower case letters.


    #include...
  21. Replies
    7
    Views
    1,678

    windows 2000

    windows 2000
  22. Replies
    7
    Views
    1,678

    Ok now I have another question that isnt really...

    Ok now I have another question that isnt really big enough to start a new thread IMO.

    How would I retrieve the total amount of system memory installed on the computer that is running the program?
  23. Replies
    7
    Views
    1,678

    I got it to work with dynamic memory, thanks...

    I got it to work with dynamic memory, thanks alot.
  24. Replies
    7
    Views
    1,678

    variable size of namespace?

    I am trying to make a namespace with an array that can change in size:

    namespace namespace2
    {
    int array[256][100][namespace1::variable];
    }

    where the value of "variable" is set earlier...
  25. As it turns out the problem is that the long was...

    As it turns out the problem is that the long was too big like you said. I did manage to find another way around it, so my program can still work, though.
Results 1 to 25 of 28
Page 1 of 2 1 2