Thread: ShellExecute Function

  1. #1
    Registered User
    Join Date
    Jan 2006
    Posts
    5

    ShellExecute Function

    I came accross this function there the other day, and i used it to open up a webpage like so:


    Code:
    ShellExecute(NULL, "open", "http://www.cprogramming.com/", NULL, NULL, SW_SHOWNORMAL);
    is there a way to show if the web page has loaded completely so that you can proceed to doing whatever you want to on the webpage when it has loaded?

  2. #2
    The superhaterodyne twomers's Avatar
    Join Date
    Dec 2005
    Location
    Ireland
    Posts
    2,273
    do you mean is there a return value which will show whether the webpage has completely loaded or not?

    well I don't know, try msdn I guess

  3. #3
    @codeguru
    Join Date
    Jan 2006
    Posts
    34
    no. there is no way. unless you know how to hook the process's internet stream

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Seg Fault in Compare Function
    By tytelizgal in forum C Programming
    Replies: 1
    Last Post: 10-25-2008, 03:06 PM
  2. Another syntax error
    By caldeira in forum C Programming
    Replies: 31
    Last Post: 09-05-2008, 01:01 AM
  3. In over my head
    By Shelnutt2 in forum C Programming
    Replies: 1
    Last Post: 07-08-2008, 06:54 PM
  4. Game Pointer Trouble?
    By Drahcir in forum C Programming
    Replies: 8
    Last Post: 02-04-2006, 02:53 AM
  5. Question..
    By pode in forum Windows Programming
    Replies: 12
    Last Post: 12-19-2004, 07:05 PM