Search:

Type: Posts; User: Tazar

Search: Search took 0.01 seconds.

  1. Thread: Full?

    by Tazar
    Replies
    2
    Views
    1,632

    I don't now how you would do it with code but you...

    I don't now how you would do it with code but you can hit Alt+Enter to go fullscreen in windows.
  2. Replies
    3
    Views
    1,285

    Ok using fstream.h I would just loop throu all...

    Ok using fstream.h I would just loop throu all the lines you don't want and then grab the one you want like this:



    #include <fstream.h>
    #include <iostream.h>

    #define LINE_NUMBER 2

    int...
  3. Replies
    3
    Views
    1,087

    The main difference it that a class has a...

    The main difference it that a class has a constructor and a destructor a strcture does not have them also you can put functions in a class and varables you also have the abilty to make some of the...
  4. The problem is that the arrow keys and all F keys...

    The problem is that the arrow keys and all F keys are extended and return 0 then the number for the key

    I changed your code to work and it works fine now



    #include <iostream.h>
    #include...
  5. Just use it like this (I'm at school right now so...

    Just use it like this (I'm at school right now so I have not compiled this but I think it will work fine)
    I hope this helps you guys out a bit ^_^



    #include <stdlib.h>
    #include <stdio.h>...
  6. Thanks for the help. I'll check out that site and...

    Thanks for the help. I'll check out that site and OpenGL.
  7. Please point to some really simple 3D tutorials

    Ok I know you guys can help me. I love this board because how nice evrybody is anywhy, can anyone give me some like to really simple 3d tutorials I wound like them to use DX or winapi but I'll try...
  8. Thread: Help plz

    by Tazar
    Replies
    6
    Views
    1,094

    I don't know if this is what you wanted but it...

    I don't know if this is what you wanted but it works ^_^

    #include <iostream.h>
    #include <stdlib.h>


    int main()
    {
    int hit_points = 100;
    int *pointer_to_hitpoints =(int*)hit_points; //I...
  9. Replies
    5
    Views
    1,449

    Just include ddraw.lib Tazar The Demon

    Just include ddraw.lib

    Tazar The Demon
  10. Replies
    38
    Views
    5,271

    Sure I did PASCAL too man but I didn't get too...

    Sure I did PASCAL too man but I didn't get too far in it lol Did a lot of Qbasic Glad I'm not the only one to start with Qbasic and PASCAL =)

    Thanks
  11. Replies
    38
    Views
    5,271

    You guy and gals want to make a game with out...

    You guy and gals want to make a game with out programming then go get Klick & Play I started with Qbasic and I say all languages have a spot some are better then others but to each their own I have...
  12. Replies
    13
    Views
    2,615

    Keep at it C++ is one of the most powerfull and...

    Keep at it C++ is one of the most powerfull and most used languages of all time so learn and most of all have fun =) if you need help just ask on this board and somebody will help you this board...
  13. Replies
    13
    Views
    2,615

    I fixed the code, it didn't work becose EOF is a...

    I fixed the code, it didn't work becose EOF is a file define and you should use '\n' for strings or EOL I used '\n' so it's easy to see the code and how it works =)

    #include <stdio.h>

    /*count...
Results 1 to 13 of 13