Search:

Type: Posts; User: abrege

Page 1 of 16 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    18
    Views
    2,276

    How do I compress the files?

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

    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,881

    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,881

    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,099

    perfect! much thanks

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

    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,526

    Jigga wha?

    Jigga wha?
  8. Replies
    8
    Views
    3,244

    View Post

  9. Replies
    4
    Views
    1,185

    thanks!

    thanks!
  10. Replies
    4
    Views
    1,185

    XP, MSVC++

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

    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,727

    indeed :mad:

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

    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,634

    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,634

    Grilled Steak Soft Tacos all the way

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

    by abrege
    Replies
    27
    Views
    2,127

    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,354

    getting size of a vector

    For example...


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

    Thanks
  18. Replies
    45
    Views
    8,476

    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,921

    It's fine.

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

    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,774

    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,214

    RoD, that was quite uncalled for.

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

    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,131

    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,072

    Google? Yes, google.

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