Search:

Type: Posts; User: RpiMatty

Page 1 of 8 1 2 3 4

Search: Search took 0.02 seconds; generated 42 minute(s) ago.

  1. Replies
    4
    Views
    1,974

    I know how to get around a bios password, but...

    I know how to get around a bios password, but should i tell him?
    What did you forget your password? or is this to get into someone elses computer.
  2. Replies
    7
    Views
    1,694

    Anyone wanna make a game

    Well i posted this in General Discussion , and haven't gotten many responses, so i thaught i would post it here, becuase this is the game development board.

    Is anyone interseted in working on a...
  3. Replies
    12
    Views
    3,334

    umm there is no GetStockBrush function in the...

    umm there is no GetStockBrush function in the win32 api.
    GetStockObject is what they want you to use
  4. Thread: Windows CE

    by RpiMatty
    Replies
    10
    Views
    3,346

    I believe the dreamcase has been hacked to run...

    I believe the dreamcase has been hacked to run Linux.
    I would look around the web and find out more about it, cus its alot cheaper than buying a windows os.
  5. What type of errors are you getting? shellapi.h...

    What type of errors are you getting?
    shellapi.h comes with msvc++.
    First make sure you have the file on your computer. Use the windows search to do this.
    Look at borlands help, or online site to...
  6. Replies
    13
    Views
    2,976

    hahahaha nice one unknown person. Original...

    hahahaha nice one unknown person.

    Original Poster = OP
  7. Replies
    2
    Views
    2,340

    Programming group

    2 Questions.

    Anyone interseted in working on a DirectX(or other lib) game? I have a few ideas for games, 1 being a Streets of Rage/Double Dragon/Simpsons arcade type street brawl game.
    I am not...
  8. Replies
    13
    Views
    1,467

    I never said it was impossible. I was just giving...

    I never said it was impossible. I was just giving conversion sizes so once Sunny figured out how many bytes each frame took up, it could be converted to MB which is a common measurement for memory.
    ...
  9. Replies
    7
    Views
    1,974

    In my data structures and algo class we had to do...

    In my data structures and algo class we had to do this, make some iterators for a class we designed earlier in the year.
    It was probably the hardest lab that we had to do, but that was becuase the...
  10. Thread: I/O newline

    by RpiMatty
    Replies
    3
    Views
    954

    How are you reading the file? If you are using...

    How are you reading the file?
    If you are using getline, it will stop at the newline character. So simply display the text you read, then cout << endl;
  11. Replies
    13
    Views
    1,467

    It depends on the amount of free memory in the...

    It depends on the amount of free memory in the system, and on the video card, depending on where you store the info.
    Hmm lets try and calculate the amount of MB you need.
    A vertex is made up of 3...
  12. Replies
    2
    Views
    1,208

    The error lies in your printf statement ...

    The error lies in your printf statement

    printf("%i. %s %s %d %s %s %f\n", i + 1, VideoTitle, Category, DaysRented, Y, Late, Charge);


    you use %s for Category,Y and Late, but those are only...
  13. Replies
    1
    Views
    925

    First you may want to add a method GetX and GetY...

    First you may want to add a method GetX and GetY to the point class so you have some way to access the data of the point, other that printing it out with the print function.

    Now what is wrong with...
  14. Thread: Hexa help!

    by RpiMatty
    Replies
    4
    Views
    1,038

    Um OxXX would only be 1 byte 0xXXXX would be 2...

    Um OxXX would only be 1 byte
    0xXXXX would be 2 bytes

    Each digit in hex(0-9,A-F) represents 4 bits. Put two digits together to get 8 bits which is a byte
  15. Yes the string class is more logical. The other...

    Yes the string class is more logical.
    The other way you mention is how programmers created strings before C++. There were no classes to hide all the data and methods in.
    I use the string class most...
  16. Replies
    4
    Views
    1,568

    do this class Dog; class Cat; at the top...

    do this

    class Dog;
    class Cat;

    at the top of your code. Then later when you are implimenting Dog or Cat it will know that the other is a class.
  17. Replies
    6
    Views
    1,000

    A very simple windows program would work. You...

    A very simple windows program would work.

    You would NOT have to create a window, and then you could use message box's to display information.

    int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE...
  18. Replies
    12
    Views
    1,470

    I get 60 fps on my laptop ( Pentium 3 700 mhz, S3...

    I get 60 fps on my laptop ( Pentium 3 700 mhz, S3 Savage graphics 8mb vid ram).

    Looks good, except when the mouse is on the edge of the screen scrolling, it "sticks" to the edge, requiring a big...
  19. Replies
    1
    Views
    1,125

    Well you didnt say what OS this is for. If it is...

    Well you didnt say what OS this is for.
    If it is windows you can use winsock to connect different computers over the internet.
    If you are using direct X look into direct play.

    A google search...
  20. Replies
    9
    Views
    1,257

    http://www.cplusplus.com/ I use c++.com it is a...

    http://www.cplusplus.com/
    I use c++.com it is a nice reference site.
    There is also google. Searching for a function will usually turn up alot of information.
  21. Replies
    4
    Views
    2,959

    Yes, when you create the vector, there is no size...

    Yes, when you create the vector, there is no size so new is never called. But when the object is destroyed, delete is called to free any memory
    chaning the code to
    vector<int> v(2);
    gave me the...
  22. Replies
    13
    Views
    4,051

    change ofstream log("accesslog.txt,ios::app"); ...

    change
    ofstream log("accesslog.txt,ios::app"); to this
    ofstream log("accesslog.txt" , ios::app);
  23. Replies
    3
    Views
    1,057

    new and delete can be used to create arrays ...

    new and delete can be used to create arrays


    int * anArray = NULL;
    int ** a2dArray = NULL;

    anArray = new int [10]; //the constant 10, can be replaced by a var.

    if( anArray == NULL)
    {
  24. Replies
    11
    Views
    2,375

    double relation(double r1, double r2) { if...

    double relation(double r1, double r2)
    {
    if (fabs(r1-r2) <= (d) <= (r1+r2)) //1
    cout << "Intersection" << endl;
    else if
    ( d > (r1 + r2)) //2
    cout << "Separation " << endl;
    else
    cout...
  25. Replies
    13
    Views
    4,051

    use "system( char * )"...

    use "system( char * )"
    system("C:\\path\\redalert2.exe");

    If your trying to secure your computer, that should be a job of the operating system. I know there are programs out there, that can...
Results 1 to 25 of 194
Page 1 of 8 1 2 3 4