Search:

Type: Posts; User: xTrinity

Search: Search took 0.00 seconds; generated 53 minute(s) ago.

  1. Replies
    7
    Views
    1,731

    Thanks! That works fine! All about the quick...

    Thanks! That works fine!
    All about the quick hacks :).
  2. Replies
    7
    Views
    1,731

    Im guessing it's using the Spawn option. With...

    Im guessing it's using the Spawn option. With P_WAIT?
    Nothing talks about whether the text is visible or not...
  3. Replies
    7
    Views
    1,731

    Using System(), but invisible?

    What I made can be called a "text interface" to a program that is ran by flags ([program name] -d -f -l and etc), to make it easier for beginners to use it. However, once the program runs, it...
  4. Replies
    13
    Views
    3,727

    :D :D Anyways textureRead.clear() works...

    :D :D

    Anyways textureRead.clear() works great. Thanks!!

    0.000000001 ms ..... :rolleyes:
  5. Replies
    13
    Views
    3,727

    Hey, thanks! Didn't work before because I put the...

    Hey, thanks! Didn't work before because I put the Write open inside the while. Figures :D. Took me a few hours last night just to realize the while loop didnt have opening and closing brackets.
    ...
  6. Replies
    13
    Views
    3,727

    Hrmmm.. then how do i make it (with your 256byte...

    Hrmmm.. then how do i make it (with your 256byte buffer) write the full 700Kbs in the new file? It only write 256 bytes.
  7. Replies
    13
    Views
    3,727

    Hey, thanks for the help. Your way is much...

    Hey, thanks for the help. Your way is much shorter :D.

    However, you forgot to open the new file:
    textureWrite.open (nameTextureWrite.c_str(), ofstream::binary | ofstream::out);

    Also, since the...
  8. Replies
    13
    Views
    3,727

    Can someone one tell me what I'm doing wrong?...

    Can someone one tell me what I'm doing wrong?
    With this code, it reads from from the 16th byte, which is good. It outputs correctly. But, once it gets to the end of the file, I get an error:
    ...
  9. Replies
    13
    Views
    3,727

    ifstream texture; string name; cout

    ifstream texture;
    string name;

    cout << "Enter the filename of the texture you will be converting: ";
    cin >> name;

    texture.open (name);
    if (texture.is_open())
    {
    while (texture.good())
  10. Replies
    13
    Views
    3,727

    Alright, no code. But hints or links? The...

    Alright, no code. But hints or links?

    The tutorial is a good help. However, it does not explain writing. I found this: Newsgroup post. Any ideas?
  11. Replies
    13
    Views
    3,727

    Hex Editing - Remove first 15 bytes

    What I'm trying to do is, have the user input a file name and it must have the extension .SST. Once that is done, it will remove the first 15 bytes of the file and rename it accordingly.

    The file...
Results 1 to 11 of 11