Search:

Type: Posts; User: Quantum1024

Page 1 of 20 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    10
    Views
    2,782

    Using *.* with FindFirstFile/FindNextFile would...

    Using *.* with FindFirstFile/FindNextFile would also turn up results such as 'file.txt.obj.exe.com.mp3'. It will turn up anything with a '.' in it.
  2. If you really want a non-portable Win32 function...

    If you really want a non-portable Win32 function then use SetFilePointer.
  3. I think what you want to do for this is create a...

    I think what you want to do for this is create a custom control. Each control in windows like menu bars and menus are a window and you can create your own custom controls by creating windows that are...
  4. If you havn't allready, look up the following...

    If you havn't allready, look up the following functions in MSDN. CreateFile used to open the comm port. ReadFile/WriteFile used to read and write from the comm port as if it were a file....
  5. Replies
    9
    Views
    3,073

    I think this gets the award for most ambitious...

    I think this gets the award for most ambitious project ever posted.
  6. Replies
    3
    Views
    2,236

    You might want to look into sending a UDP pack to...

    You might want to look into sending a UDP pack to the broadcast IP which will be recieved by all IPs.
  7. Replies
    19
    Views
    7,050

    I remember finding a copy of hitchkider's guide...

    I remember finding a copy of hitchkider's guide to the galaxy on my school's apple mac and being amazed at how it seemed to understand everything I typed. But then I was always more logical then...
  8. Thread: trpg

    by Quantum1024
    Replies
    9
    Views
    1,654

    I'm going to go with 3.

    I'm going to go with 3.
  9. Replies
    4
    Views
    4,710

    I'll enter the next contest too, this time I'll...

    I'll enter the next contest too, this time I'll do more testing and turn compiler warnings on :)

    Thanx for the contest I'm looking foreward to the next one.
  10. Replies
    17
    Views
    5,795

    I don't really see anything wrong with this....

    I don't really see anything wrong with this. Hacking in the security sense is simply finding security holes in systems. This course could have been named "secure coding practices" to attract less...
  11. Replies
    91
    Views
    19,875

    It does seem to be people living in asian...

    It does seem to be people living in asian countries who are more susceptible to WOW addiction. I think all of the WOW related deaths were asians. I don't really know why this would be the case.
  12. Replies
    91
    Views
    19,875

    The reason they want to make it so addictive is...

    The reason they want to make it so addictive is because it's pay to play.

    It's so addtictive because of the way the game is structured. There's that next level, that better weapon. Playing with...
  13. Replies
    46
    Views
    11,773

    sent.

    sent.
  14. Replies
    4
    Views
    1,468

    Are you sure it's not allready running in the...

    Are you sure it's not allready running in the background?
  15. Replies
    46
    Views
    11,773

    I will get around to finnishing my entry soon,...

    I will get around to finnishing my entry soon, hopefully.
  16. Replies
    7
    Views
    10,764

    Do a simple bounding box check if...

    Do a simple bounding box check

    if ((MouseX>=TextX && MouseX<=TextX+TextWidth) && (MouseY>=TextY && MouseY<=TextY+TextHeight))
  17. Replies
    7
    Views
    10,764

    Yes. If you know you'll need more menus such as...

    Yes. If you know you'll need more menus such as in game and options menus then it might be best to create a GUI managment system. make each button a class which stores it's co-ordinates. When a mouse...
  18. Replies
    5
    Views
    1,189

    ^^^I agree.

    ^^^I agree.
  19. Replies
    9
    Views
    3,171

    I agree, you'll probably find these files if you...

    I agree, you'll probably find these files if you look in the include files that you do include.
  20. Replies
    8
    Views
    1,833

    You can remove the & since an array's name can be...

    You can remove the & since an array's name can be passed to a function which expects a pointer.
  21. Replies
    5
    Views
    1,015

    What error message do you get when trying to...

    What error message do you get when trying to compile?
  22. Replies
    16
    Views
    10,744

    DirectSound?

    DirectSound?
  23. Replies
    25
    Views
    3,157

    for (;;) { int x; int y; x++; y++;...

    for (;;)
    {
    int x;
    int y;
    x++;
    y++;
    What this is doing is searching in a diagonal line from top left to bottom right or rather it would if you'd initialized the variables to zero. And...
  24. Thread: Yesno

    by Quantum1024
    Replies
    4
    Views
    1,187

    or simply if (MessageBox(...)==IDYES) { ...

    or simply

    if (MessageBox(...)==IDYES)
    {
    ...
    }
    else
    {
    ...
    }
  25. Replies
    3
    Views
    1,005

    Because a char array is different from a pointer.

    Because a char array is different from a pointer.
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4