CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Apr 1999
    Posts
    3

    ShellExecute Question???

    Using ShellExecute what do I put in for the file name parameter to to have
    the browser start and open the file that is currently open in my HTML editor??


  2. #2
    Join Date
    Apr 1999
    Posts
    12

    Re: ShellExecute Question???

    Following should do it:

    ShellExecute(NULL,"open", "http://www.codeguru.com",
    NULL, NULL, SW_SHOWNORMAL);


    Ajay




  3. #3
    Join Date
    Apr 1999
    Posts
    3

    Re: ShellExecute Question???

    I may not have phrased the question correctly. I don't want to open this web address. I want to open whatever file is in the the child window of the HTML editor I am building.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured