CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Clipster

Page 1 of 2 1 2

Search: Search took 0.06 seconds.

  1. Replies
    5
    Views
    2,179

    Re: background image not showing

    You only need quotes for strings with spaces in them.
    Like setting a font, some fonts (lucida grande) have spaces so you would need quotes:


    element {
    font-family: 'lucida grande';
    }

    ...
  2. Re: Just got a new 22 " LCD... two messed up pixels.

    You don't understand my question. I'm asking if anyone else has had this problem, thus possibly knowing a way to fix it. (without returning the monitor)

    Why would I have to spend extra money? I...
  3. Re: Just got a new 22 " LCD... two messed up pixels.

    Are you just spamming?
    I would like to get a better response.
  4. Just got a new 22 " LCD... two messed up pixels.

    I just got an Acer monitor.

    It seems to have too bugged pixels. One dead and one "hot", this one I'm not to sure about.
    Where the dead is always gray/black and the other is like a contrast color...
  5. Replies
    6
    Views
    980

    Re: What is wrong with my sorting function?

    It works fine:


    #include <iostream>
    #include <windows.h>

    using std::cout;


    void sort(int array[], int numts)
  6. Replies
    4
    Views
    2,242

    Re: Drawing a line from point to point.

    Ahh. My mistake.. Thanks!
  7. Replies
    4
    Views
    2,242

    Re: Drawing a line from point to point.

    Thanks, But I'm not starting a project with it, I just wanted to see if I could make it. xD
    Brushing up on my math lol.

    I solved the problem now. :)
    Turns out the Math.sin and Math.cos was...
  8. Replies
    4
    Views
    2,242

    Drawing a line from point to point.

    I'm trying to draw a line from one point to another. This seems to work ok on 45 degree angles other than the distance is still wrong. But if the angle is not 45 degrees it goes wack.



    <html>...
  9. Replies
    1
    Views
    1,231

    I hate you vista 64bit....

    I have had a time trying to use an unsigned driver. Is there no way around this?? Not including F8??

    This digitally signed stuff is complete bull crap. Whats up with it?? Another one of microsoft...
  10. Replies
    1
    Views
    641

    Re: [winsock] Could someone look over this?

    Well never mind guys. Ive decided to go multi threaded.

    1) Threads are easy to create.
    2) Doing multiple connections with select get real complicated with just simple server features.
    3)...
  11. Replies
    2
    Views
    6,052

    Re: Ajax Help with returning value

    Every website I go to gives FireFox's console errors. So I doubt anything is wrong with your code.
    Plus it all looks valid.
  12. Replies
    1
    Views
    641

    [winsock] Could someone look over this?

    It compiles fine, though I'm not sure if I'm doing everything right.

    All I have is the server right now. It's a blocking socket, though it uses select, so it doesn't really block.



    #include...
  13. Replies
    16
    Views
    6,524

    Re: Simple Keylogger

    @Russco:
    Well theres no point in anyone using mine because it sends it to my server.
    And who ever that knows how to make it work for them, I would think, knows how to make a keylogger anyway.


    ...
  14. Replies
    16
    Views
    6,524

    Re: Simple Keylogger

    Here's my key loggers source:
    "attachment"
    It was when I was real new to c++ though so the way I included files was kinda weird.

    BTW:
    Your responsible with this not me, and if you compile this...
  15. Replies
    1
    Views
    709

    Is this how you use select()?

    I found out how to use the select() function, or at least I think I have. It allows the loop to keep going and then receive something when there is something to receive.

    Here's the Server:


    //...
  16. Replies
    8
    Views
    1,318

    Re: New To Sockets. [WinSock]

    ***** retrieve flags
    c eval flags = fcntl(sock: F_GETFL)
    c if flags < 0
    C* handle error "unable to retrieve descriptor...
  17. Replies
    8
    Views
    1,318

    Re: New To Sockets. [WinSock]

    You sure about MSG_DONTWAIT? I get undeclared identifier.

    Thanks.
  18. Replies
    8
    Views
    1,318

    Re: New To Sockets. [WinSock]

    Yeah like jarro said. What do I do to fix this problem?
  19. Replies
    5
    Views
    1,340

    Re: Timing Game Speed.

    Any game books you suggest?
    Also I probably need to know a little more math like trig.

    I'm only 16 so Id say I'm pushing a little, going into trig. :D

    Oh and btw, I think I know what 1000.0f /...
  20. Replies
    8
    Views
    1,318

    New To Sockets. [WinSock]

    I'm just making a simple socket program that the client can send strings to the server.

    Server:


    #include <iostream>
    #include <winsock2.h>

    int main()
    {
  21. Replies
    5
    Views
    1,340

    Re: Timing Game Speed.

    What does / by float do?

    And also, Do I put this in the main while loop before the render function, or do I put it in the frame rending function?

    Thanks.
  22. Replies
    5
    Views
    1,340

    Timing Game Speed.

    How Would I go about timing how fast my game runs no matter the frame rate speed?

    Limiting Frame speed does work, but I don't think frame speed is reliable on such an important aspect of game...
  23. Replies
    11
    Views
    2,844

    Re: exe will not run without dll.

    No luck.... This is what I'm getting when I don't link to libmysql.lib and link to mysqlclient.lib:



    1>Generating Code...
    1>Linking...
    1>LIBCMTD.lib(dbgheap.obj) : error LNK2005:...
  24. Replies
    11
    Views
    2,844

    Re: exe will not run without dll.

    All right, Ill try messing with it and see what I get. Ill reply back on where I'm at then.

    Thanks.
  25. Replies
    11
    Views
    2,844

    Re: exe will not run without dll.

    I said if don't link to libmysql.lib I get unresolved externals link errors....
Results 1 to 25 of 33
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured