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

Search:

Type: Posts; User: rajprabhu2k

Search: Search took 0.06 seconds.

  1. Re: Want to hide IE window using CreateProcess()

    How to add WebBrowser control into the application?
  2. Re: Want to hide IE window using CreateProcess()

    CreateProcess (NULL, cmd, 0, 0, 0, CREATE_NO_WINDOW, 0, 0, &si, &pi);
    ShowWindow((HWND)pi.dwProcessId,SW_HIDE);

    thanks but its not working
  3. Re: Want to hide IE window using CreateProcess()

    It works but , this also shows the browser i want to hide the browser window
  4. Re: Want to hide IE window using CreateProcess()

    hi this code is working, but it shows the Internet explorer window , I want to hide the internet explorer window, everything should be done in background.
  5. Want to hide IE window using CreateProcess()

    I want to execute a HTML page using CreateProcess API but i dont want to show the Internet Explorer, this is the code but it shows the windows. I have given the code. Can anyone one help me ?
    ...
  6. Re: How to make Broadcast & Listening Server using Thread

    I tried without creating thread then also its not working, check the below code, Here the Server broadcast server address , when client receives then it sends client address to the server. Now client...
  7. Re: How to make Broadcast & Listening Server using Thread

    how to intialize broadcast server ?
  8. Re: How to make Broadcast & Listening Server using Thread

    /* create a socket */
    if(MSObj.InitializeUDPSocket(udpSocket) == -1) exit(1);

    the above function will do the intialization
  9. Re: How to make Broadcast & Listening Server using Thread

    Sorry , while posting i missed that function, now i added .

    i tried to send msg from server to client using sendto() function , In the server side i did not call bind socket, sendto() function...
  10. Re: How to make Broadcast & Listening Server using Thread

    I am working in root login, i am able to send and receive packets but still i have that problem. If we want to receive msg from an address , will the receiver end should bind the sender address?
  11. Re: How to make Broadcast & Listening Server using Thread

    I tried without calling bind socket function, for sendto() its working but recvfrom() its not working without bind socket.

    Server - Broadcast (127.255.255.255) Server Address(127.0.0.1) as Msg...
  12. Re: How to make Broadcast & Listening Server using Thread

    BindSocket is implemented in MySocket class which is in the first section of the code.
  13. How to make Broadcast & Listening Server using Thread

    I am developing a Client Server Quiz Game in Redhat Linux using SDL. I have one problem this is not a part of game but i want to make it clear. I have created two thread in server program, one thread...
  14. Re: Run-Time Check Failure #2 - Stack around the variable 'cz' was corrupted.

    Hi, you have to increase the array size in your code. Array value will start from 0 , if you define char buffer[3] then only 0,1,2 are accessible you cannot access buffer[4] because you defined only...
  15. Replies
    4
    Views
    5,379

    Re: How to create UDP Packets

    Hi, i want to divide image file into packets. i did this in text file it worked fine but its not working in PNG file. Why its not working? i am unable to create copy of the image. Whats wrong with...
  16. Replies
    4
    Views
    5,379

    How to create UDP Packets

    Hi,

    I want to send a image from server to client using UDP. How to send it? How to create packet ?
  17. Replies
    5
    Views
    6,863

    Re: How to create Concurrent Server

    Thank you, but i must use UDP
  18. Replies
    5
    Views
    6,863

    Re: How to create Concurrent Server

    thanks , when new socket is created then that socket will be handle for the client A, but how the main server will listen to the other like client B, because the port and address will be used by the...
  19. Replies
    5
    Views
    6,863

    How to create Concurrent Server

    Hi,

    I am developing a client/server Quiz game using UDP , when the game starts the server should send questions to the client which is connected to the server.
    my logic is when the client A...
Results 1 to 19 of 19





Click Here to Expand Forum to Full Width

Featured