Search:

Type: Posts; User: Kyoto Oshiro

Page 1 of 6 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    21,647

    Adding integers to a string

    How can I add an integer value to the end of a string? Is there a way to convert the integer to a string and then add it on?

    Example:



    // using free Borland C++ Compiler v5.5
    // using...
  2. Replies
    3
    Views
    1,789

    Thanks!

    Works like a charm, thanks a bunch!
  3. Replies
    3
    Views
    1,789

    system() arguments?

    What does the system(); command take as an argument? I tried string, but that doesn't exactly work. An array maybe?
  4. Replies
    13
    Views
    1,264

    Well

    Well, here is how it went.
    I did in fact save the File Recovery program to the same drive I was trying to restore...um...oops. So, I will move it and try again.
    I don't know if it still applies,...
  5. Replies
    13
    Views
    1,264

    RE:

    Well, I had done a brief search before but I will go more in depth now.
    Anyways, currently I am trying a file recovery program from download.com, and it seems to be working okay. I used FAT32 to...
  6. Replies
    13
    Views
    1,264

    Recovering data after a reformat...

    I didn't know where else to turn. I reformatted C: after thinking I had backed up the important files to a CD. However, the CD keeps giving me errors and the files come off it empty. So, is there a...
  7. Replies
    4
    Views
    936

    I know Sebastiani, but I was just wondering if I...

    I know Sebastiani, but I was just wondering if I could do it this other way, instead of multithreading.
    Thanks.
  8. Replies
    4
    Views
    936

    Multiprocessing variation question

    I was just wondering, for doing two things at once, if the following was possible...



    while (doing something)
    do something else


    I was thinking like running a function in the ( ) of the...
  9. Replies
    0
    Views
    976

    Ignorning Alt+Enter

    How would this be done? Also, what is 'Alt', if I was to compare it to a value (likely the user input).



    if (Userinput == 'Alt')
    {
    // Bla
    }
  10. Replies
    3
    Views
    1,056

    Thanks

    Thanks, that was the code I was looking for.
  11. Replies
    3
    Views
    1,056

    Multiprocessing?

    Okay, I want to be able to do two or more things at once, and so far all I could find on the topic was multiprocessing. The problem is, I don't know how the heck to do this.
    The easiest example of...
  12. Replies
    4
    Views
    1,187

    Hi! Thanks for the comments. deleeuw, I am happy...

    Hi!
    Thanks for the comments. deleeuw, I am happy you like the game. "No bells and whistles" is my middle name :) As for the Readme, it is right on the main menu, option number 3. When you choose it,...
  13. Replies
    4
    Views
    1,187

    New Program please try it out

    http://www.angelfire.com/empire/mightyant/hive.html

    Please try out this latest program I was working on. You take control of an Ant Hive, and try to achieve various goals. I thought it was pretty...
  14. Replies
    2
    Views
    1,431

    Okay, that sounds like a good idea. I will try...

    Okay, that sounds like a good idea. I will try that Innosetup out, thanks for the link.
  15. Replies
    2
    Views
    1,431

    Moving Files

    Okay, sorry to ask another question (at the time of writing this I had just posted), but anyhow.
    I was just starting to have one of my games create all of its files in a folder. Now, is there a way...
  16. Replies
    5
    Views
    3,530

    Great, thanks tons. That will help me out alot.

    Great, thanks tons. That will help me out alot.
  17. Replies
    5
    Views
    3,530

    Square Root

    How would I get the square root in C++, do I have to use a function or something? I am using it for A*A + B*B = C*C, but I want to square root C so it is just C (this is the Pythagoreum Therom if I...
  18. Replies
    22
    Views
    2,718

    Smashing, that would be the bee's knees! I look...

    Smashing, that would be the bee's knees! I look forward to your arrival, my friend.
  19. Replies
    22
    Views
    2,718

    Yes, I will be your friend. Let us indulge in...

    Yes, I will be your friend. Let us indulge in cookies, milk, and a rousing game of Scrabble!
  20. Thread: Finished!

    by Kyoto Oshiro
    Replies
    22
    Views
    3,130

    Um...I thought the whole idea of posting the...

    Um...I thought the whole idea of posting the character was so I could see if it went along with the stats and was thus a comparable arguement concerning the Dragon. Level 300 sort of defeats the...
  21. Thread: Finished!

    by Kyoto Oshiro
    Replies
    22
    Views
    3,130

    Post the Character.hcs and we will see if the...

    Post the Character.hcs and we will see if the statistics follow what a Level 500 character would have. If they don't, then a comparision cannot be made when fighting the Dragon.
  22. Replies
    22
    Views
    2,718

    I have poor logic skills and making people feel...

    I have poor logic skills and making people feel bad makes me feel better about myself.

    Everyone else, I think maybe it is because the planet's are aligned, or because NWN and Warcraft 3 came out...
  23. Thread: Saving

    by Kyoto Oshiro
    Replies
    12
    Views
    1,666

    You must put an

    You must put an <<endl; after each line in the saving part. Otherwise it will output a line of variables (so yourHP and enemyHP will mould together). You don't need to put any endl's when loading the...
  24. Replies
    48
    Views
    8,188

    Poll: Courtney Cox used to be hot, now she is a skinny...

    Courtney Cox used to be hot, now she is a skinny wisp of a lady. Jennifer Aniston is pretty hot, but overall I would have to say the model Josie Maran. Even though that wasn't an option, and no one...
  25. Thread: Saving

    by Kyoto Oshiro
    Replies
    12
    Views
    1,666

    You use getline so that they can enter spaces...

    You use getline so that they can enter spaces into the filename. Below is an example of how it could be implemented.


    char Filename[50];
    cout<< "Enter filename: ";
    cin.getline(Filename, 50);
    ...
Results 1 to 25 of 145
Page 1 of 6 1 2 3 4