Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm very new with C#.

I was boring that sometimes I close a window and after few seconds I note that I need that window again, and is very frustrating to me to reopen Windows Explorer and navigate to that specific path.

So I want to create a little app that permits me store a list of the last closed windows. And with a key shortcut restore one by one the last closed windows (just like I do with browsers like Firefox) and with other key shorcut display a list with the last n windows.

I don't know how to get the paths of the windows and is important that the program gets also when the paths changed (when the user navigates).

Thanks for help.


I will post the link once the app will be finished.

share|improve this question
Have you tried anything? – Bali C Dec 15 '11 at 13:36

1 Answer

up vote 6 down vote accepted

Taken from here:

SHDocVw.ShellWindows shellWindows = new SHDocVw.ShellWindows();

string filename;

foreach ( SHDocVw.InternetExplorer ie in shellWindows )
{
   filename = Path.GetFileNameWithoutExtension( ie.FullName ).ToLower();

   if ( filename.Equals( "explorer" ) )
   {
      // Save the location off to your application
      Console.WriteLine( "Explorer location : {0}", ie.LocationURL );

      // Setup a trigger for when the user navigates
      ie.NavigateComplete2 += new SHDocVw.DWebBrowserEvents2_NavigateComplete2EventHandler(handlerMethod);
   }
}
share|improve this answer
Thanks Garret. I get an error that said that can't found the namespace SHDocVw. – Memochipan Dec 15 '11 at 13:56
Add a reference to the Internet Explorer Controls COM object. See here for more info: omegacoder.com/?p=63. – Garrett Vlieger Dec 15 '11 at 13:58
Ok. I could imported the Internet Explorer Control COM object. Now I get this error: The type of interoperability 'SHDocVw.ShellWindowsClass' can not be embedded. Use the interface of its place. What is talking about? – Memochipan Dec 15 '11 at 14:30
Edited the code above: SHDocVw.ShellWindows shellWindows = new SHDocVw.ShellWindows(); – Garrett Vlieger Dec 15 '11 at 14:45
Now works perfect!! Only I have an error with The name 'handlerMethod' does not exist in the current context but is guess that I have to build a handlerMethod. Thank you very much. – Memochipan Dec 15 '11 at 15:02
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.