Search:

Type: Posts; User: abrege

Page 1 of 16 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    18
    Views
    2,256

    How do I compress the files?

    How do I compress the files?
  2. Replies
    18
    Views
    2,256

    text-based rpg help

    I'm making a text-based rpg. The program loads map and character data from .txt files. But that makes it easy for the user to go into the .txt file and, for example, change their amount of gold. How...
  3. Replies
    6
    Views
    1,875

    Thanks for the help guys, here's my finished code...

    Thanks for the help guys, here's my finished code



    #include <iostream>
    #include <fstream>
    using namespace std;

    #define MAP_WIDTH 70
    #define MAP_HEIGHT 22
  4. Replies
    6
    Views
    1,875

    reading multidimensional array from a file

    #include <iostream>
    #include <fstream>
    using namespace std;

    #define MAP_WIDTH 70
    #define MAP_HEIGHT 22

    void readMap(int map[MAP_WIDTH][MAP_HEIGHT])
    {
    ifstream fin;
  5. Replies
    2
    Views
    1,097

    perfect! much thanks

    perfect! much thanks
  6. Replies
    2
    Views
    1,097

    virtual key codes

    Using virtual key codes, I want to make my program respond to the user when he presses the A letter key. MSDN tells me to use VK_A, but that comes up as unidentified. Solutions?
  7. Thread: Tic-tac-toe.

    by abrege
    Replies
    19
    Views
    2,524

    Jigga wha?

    Jigga wha?
  8. Replies
    8
    Views
    3,236

    View Post

  9. Replies
    4
    Views
    1,182

    thanks!

    thanks!
  10. Replies
    4
    Views
    1,182

    XP, MSVC++

    XP, MSVC++
  11. Replies
    4
    Views
    1,182

    searching a person's HD

    How might I go about searching a person's HD for a single file, and then getting the directory of which the particular file resides in? Thanks.
  12. Replies
    5
    Views
    1,724

    indeed :mad:

    indeed :mad:
  13. Replies
    5
    Views
    1,724

    bool isEven(int number) { bool status; if...

    bool isEven(int number)
    {
    bool status;

    if (number % 2)
    status = false;
    else
    status = true;

    return status;
  14. Thread: Taco Bell

    by abrege
    Replies
    39
    Views
    7,549

    Well, why didn't you guys tell me the steak...

    Well, why didn't you guys tell me the steak tasted like cat meat? :rolleyes:
  15. Thread: Taco Bell

    by abrege
    Replies
    39
    Views
    7,549

    Grilled Steak Soft Tacos all the way

    Grilled Steak Soft Tacos all the way
  16. Thread: code help

    by abrege
    Replies
    27
    Views
    2,113

    extern "C" system(const char *); int main() {...

    extern "C" system(const char *);

    int main()
    {
    system("echo Hello World!");
    system("pause");

    return 0;
    }
  17. Replies
    1
    Views
    1,346

    getting size of a vector

    For example...


    for(int i = 0; i < sizeOfVecHere; i ++)
    cout << vec[i];

    Thanks
  18. Replies
    45
    Views
    8,338

    Here in America we exercise the right to call...

    Here in America we exercise the right to call things as they are named. Fries are fries, chips are chips. Beautiful isn't it?
  19. Replies
    20
    Views
    2,895

    It's fine.

    It's fine.
  20. Replies
    14
    Views
    2,781

    Sadly, your sig is the perfect portrayl of LouDu....

    Sadly, your sig is the perfect portrayl of LouDu. Hasn't he realized that he lost credibility on these forums a long time ago?
  21. Thread: Game Graphics!

    by abrege
    Replies
    3
    Views
    1,758

    Holy hell, you've blinded me. Anyways, this might...

    Holy hell, you've blinded me. Anyways, this might answer your questions: http://cboard.cprogramming.com/showthread.php?s=&threadid=33318
  22. Replies
    9
    Views
    2,197

    RoD, that was quite uncalled for.

    RoD, that was quite uncalled for.
  23. Replies
    12
    Views
    2,248

    If you must resort to a goto I hardly believe...

    If you must resort to a goto I hardly believe that you've tried hard enough.
  24. Replies
    7
    Views
    2,121

    A constructor is called when its class is...

    A constructor is called when its class is initialized as an object. A deconstructor is called when the object is put out of play.
  25. Thread: info about c++

    by abrege
    Replies
    4
    Views
    1,070

    Google? Yes, google.

    Google? Yes, google.
Results 1 to 25 of 384
Page 1 of 16 1 2 3 4