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

Search:

Type: Posts; User: dot_binary

Search: Search took 0.02 seconds.

  1. Replies
    5
    Views
    12,679

    Re: Winsock GET Request

    Solved
  2. Replies
    5
    Views
    12,679

    Re: Winsock GET Request

    When getting a request, in the main loop, I need to get the complete URL string before I do the URL parsing and respond to the client.



    while( (new_socket = accept(s , (struct sockaddr...
  3. Replies
    5
    Views
    12,679

    Re: Winsock GET Request

    How can I get the values from the URL.
    The request is made from a browser window: http://124.1.12.23/index.html?argument1=value&argument2=value
    On the server I need to get the values after the...
  4. Replies
    5
    Views
    12,679

    Winsock GET Request

    I am trying to make basic server with Winsock.
    How can I get the values from the arguments in a GET request from the URL?

    The URL format: http://124.1.12.23?argument1=value&argument2=value

    ...
  5. Re: Keyboard key press detection question.

    From the msdn documantation , WM_KEYDOWN has a parameter thet conatins a virtual key code , the problem is that I don't know how to read the paramiter to compare the contents with the key codes.

    I...
  6. [RESOLVED] Keyboard key press detection question.

    How do I detect what individual key was pressed in my "PeekMessage" loop.

    code:

    ...
    if (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
    {
    // handle or dispatch messages
    ...
Results 1 to 6 of 6





Click Here to Expand Forum to Full Width

Featured