Search:

Type: Posts; User: linkofazeroth

Page 1 of 4 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    10
    Views
    1,228

    It'd also be a good idea to use "cout

    It'd also be a good idea to use "cout << endl << endl" instead of using a new cout for each endl. Or do as I do, and if you have more than one endl right next to eachother, drop both of them and use...
  2. Replies
    132
    Views
    731,477

    Sticky: Operating System: WinXP Compiler (IDE in this...

    Operating System: WinXP
    Compiler (IDE in this case): Dev-C++
    Graphics Libraries: None
    Other Libraries: iostream, fstream, string

    Again, I can't edit my old post... This one isn't much of an...
  3. Replies
    4
    Views
    19,954

    Holy moly!! It worked! And about half a week of...

    Holy moly!! It worked! And about half a week of waiting for someone to come up with the right answer! :D
  4. Replies
    4
    Views
    19,954

    Uh... there's no Options menu in Dev-C++. The...

    Uh... there's no Options menu in Dev-C++. The foremost menus are "File, Edit, Search, View, Project, Execute, Debug, Tools, CVS, Window", and "Help".
  5. Replies
    4
    Views
    19,954

    Linking OpenGL in Dev-C++

    I'm getting a lot of errors along the lines of "[Linker error] undefined reference to `_imp__CreateCompatibleDC@4'. I have the "-lgdi32 -lopengl32 -lglu32 -lglaux -lmingw32" flags in the linker...
  6. Replies
    10
    Views
    2,719

    I'm using Visual C++ 2005 Express Edition Beta....

    I'm using Visual C++ 2005 Express Edition Beta. Do betas not have compilers? -_- Alt F7 didn't do anything.
  7. Replies
    10
    Views
    2,719

    I mean, how do you get the glut.h file to work?...

    I mean, how do you get the glut.h file to work? It's confusing...

    EDIT: I've downloaded a DevPak for glut at http://old.devpaks.org/show.php?devpak=128, but it's still not working. I get all these...
  8. Replies
    10
    Views
    2,719

    How do you get OpenGL to work with Dev-C++? If...

    How do you get OpenGL to work with Dev-C++? If there was some easy installer thing I could use to put everything in the right place, that's be great... :(
  9. Replies
    10
    Views
    2,719

    Graphics library questions

    What would you suggest as a good graphics library, and where would I download whatever files I need to start using it with C++?

    EDIT: And how do you compile using Visual C++?? I can't find a...
  10. Replies
    132
    Views
    731,477

    Sticky: Operating system: XP (but should work on...

    Operating system: XP (but should work on anything)
    Compiler: Dev-C++ 4.9.9.2
    Graphics Library:
    Other Libraries:
    Description: Text-based rpg with no known bugs, but is unfinished. Playable.

    ...
  11. Replies
    25
    Views
    7,309

    Agreed.

    Agreed.
  12. Replies
    16
    Views
    4,146

    Argh, I've missed it! -_-

    Argh, I've missed it! -_-
  13. Well, in C++, headers only contain .h if they are...

    Well, in C++, headers only contain .h if they are (taking from someone else's post from who I forgot) non-standard or part of the original C library, and if they're part of the C library you add a...
  14. A start would be to change these... ...

    A start would be to change these...



    #include <stdlib.h>
    #include <stdio.h>
    #include <ctype.h>


    ...to these...
  15. Replies
    15
    Views
    3,627

    Like I said, my brain is slow. It's 12 midnight...

    Like I said, my brain is slow. It's 12 midnight where I am. :(
  16. Replies
    15
    Views
    3,627

    A "beginner's" contest? Either I'm less than a...

    A "beginner's" contest? Either I'm less than a beginner, or my brain has slowed down tonight. I tried and failed to create such a program. :P
  17. Replies
    4
    Views
    1,139

    Maybe you should try moving the variable...

    Maybe you should try moving the variable declarations to the public: part of the class? Probably won't work, but hey! :P
  18. Replies
    19
    Views
    4,051

    Geez, Dae, you take meanings from my posts I...

    Geez, Dae, you take meanings from my posts I never even knew were there...
  19. Replies
    33
    Views
    15,930

    Poll: I let Dev-C++ indent for me, unless an if...

    I let Dev-C++ indent for me, unless an if statement indents too far, then I set it to about 7. Otherwise, it's 4 or 5. So I selected all three options above. :p
  20. Replies
    19
    Views
    4,051

    I'm unable to decipher what the point is. Do you...

    I'm unable to decipher what the point is. Do you mean reading in from files and leaving the ifstream open is good, or that it's better to use the ifstream quickly (like you open, use, then close)?
  21. Replies
    132
    Views
    731,477

    Sticky: Operating system: XP (but should work on...

    Operating system: XP (but should work on anything)
    Compiler: Dev-C++ 4.9.9.2
    Graphics Library:
    Other Libraries:
    Description: Text-based rpg with a few minor bugs and a single bit of Story mode
    ...
  22. Replies
    19
    Views
    4,051

    Mostly it's memory usage (I think. I'm not too...

    Mostly it's memory usage (I think. I'm not too knowledgable on that subject). Keeping an ifstream open, or repeatedly closing and opening one, could potentially use more memory than you want.
  23. Replies
    19
    Views
    4,051

    I created my own function for that, too, called...

    I created my own function for that, too, called monst(). It's incomplete, buuut...
    (Oh, and struct statistics isn't a function, it's a struct. Similar to a class, actually.)



    void monst() {
    ...
  24. Replies
    19
    Views
    4,051

    No, you understood it right. I don't know how to...

    No, you understood it right. I don't know how to make the program search in a file for a certain value and pull it up (I have a function called load()), so I'm stuck with separate files. Like, if I...
  25. Replies
    19
    Views
    4,051

    In MY text-based rpg (unfinished, but playable),...

    In MY text-based rpg (unfinished, but playable), I define the struct and declare instances of the struct globally, then in the function that creates a character, it saves values to an instance of the...
Results 1 to 25 of 94
Page 1 of 4 1 2 3 4