Search:

Type: Posts; User: rockytriton

Page 1 of 14 1 2 3 4

Search: Search took 0.04 seconds; generated 47 minute(s) ago.

  1. Replies
    11
    Views
    4,686

    are you sure that hand_index is a valid index...

    are you sure that hand_index is a valid index into the vector? Also, your way of creating a hand is ok as long as you have a copy constructor. I would consider using pointers instead of stack...
  2. maybe what you are looking for is the select()...

    maybe what you are looking for is the select() function? Here's a link that may help:
    http://tangentsoft.net/wskfaq/examples/basics/select-server.html
  3. Replies
    4
    Views
    1,446

    re:

    no


    zzzzzzzzzzzzzzzzzzzzzzzzzz
  4. Replies
    1
    Views
    915

    print driver

    Hi, I'm wondering if anyone knows of a site that's a good resource on writing a print driver, I believe that this can be done in a DLL, I just need to write the output to a file. Can anyone point me...
  5. Replies
    1
    Views
    1,051

    try sending a WM_KEYUP after it, or just sending...

    try sending a WM_KEYUP after it, or just sending it as a WM_CHAR.
  6. Replies
    4
    Views
    993

    if (GetStyle() & WS_VISIBLE) { }

    if (GetStyle() & WS_VISIBLE)
    {

    }
  7. use: output.open(fileloc.c_str(),...

    use:



    output.open(fileloc.c_str(), ios::out);
  8. Replies
    16
    Views
    5,724

    I just can't imagine anyone would actually still...

    I just can't imagine anyone would actually still play a text adventure game.
  9. how about trying google?

    how about trying google?
  10. Thread: directX

    by rockytriton
    Replies
    1
    Views
    748

    gamedev.net has plenty of them

    gamedev.net has plenty of them
  11. Replies
    7
    Views
    1,202

    because you can create an alias for another...

    because you can create an alias for another type.. say...



    typedef unsigned char byte;
    typedef int INTEGER;
    typedef char *String;


    Now you can declare variables as:
  12. yea I'd say focus your efforts on something more...

    yea I'd say focus your efforts on something more useful
  13. Replies
    12
    Views
    15,684

    I have a good book on doing 2d in Direct3D,...

    I have a good book on doing 2d in Direct3D, here's a gamdev article on it too:

    http://www.gamedev.net/reference/articles/article1434.asp
  14. Replies
    0
    Views
    4,394

    A free TIFF to PDF library

    Hey guys (and gals!), I've been working on a little API for making a PDF out of TIFF files and would like some feedback on it. Also, if you could tell me anything you would find useful added to it. ...
  15. I'm not quite sure what you are talking about,...

    I'm not quite sure what you are talking about, are you saying you are going to make an engine to make games like Zork into 3d text instead of console text? Would that be even the slightest bit...
  16. Replies
    3
    Views
    3,141

    Yea GetTickCount will return the same value...

    Yea GetTickCount will return the same value within the same millisecond. If you are using it to compare the speed of two functions, I would suggest putting the two functions in a for loop for about...
  17. Replies
    2
    Views
    1,572

    Well, if it uses HTTP 1.0, then the connection...

    Well, if it uses HTTP 1.0, then the connection will close when the data is sent, so recv will return a -1, this should work just fine with your code. However, if you specify HTTP 1.1, the connection...
  18. Thread: IE plugin

    by rockytriton
    Replies
    2
    Views
    1,110

    do a search for BHO "Browser Helper Objects",...

    do a search for BHO "Browser Helper Objects", there are plenty of tutorials on them.
  19. The same reason for zeroing any struct, when you...

    The same reason for zeroing any struct, when you pass it to some black-box function, that function may work on some of the items if they are not null, this may break things.
  20. Replies
    4
    Views
    1,598

    can you load them from an external source? that...

    can you load them from an external source? that may take up more ram though.
  21. Replies
    3
    Views
    1,366

    rsh maybe

    rsh maybe
  22. Replies
    2
    Views
    3,263

    why not wait to do a network program until you...

    why not wait to do a network program until you take a course on networking?
  23. I've never dealt with these balloon windows, but...

    I've never dealt with these balloon windows, but if you are handling a NIN_BALLOONUSERCLICK message sent to it, you must have it's handle somewhere.
  24. Replies
    7
    Views
    2,753

    ok, I guess I see what you are trying to do. You...

    ok, I guess I see what you are trying to do. You want to create a program in Windows that uses a DLL that connects to a unix box and creates a directory on that box? Well, you would need to get...
  25. if there is no message type for it, maybe you...

    if there is no message type for it, maybe you should subclass its wndproc and trap WM_CLOSE.
Results 1 to 25 of 342
Page 1 of 14 1 2 3 4