VB Code:
  1. Process[] allProcs = Process.GetProcessesByName("iexplore");
  2.  
  3.  
  4.             listView1.Items.Clear();
  5.  
  6.             foreach (Process ps in allProcs)
  7.             {
  8.               listView1.Items.Add( ps.MainWindowTitle  );
  9.  
  10.             }

this code show the title of the Explorer pages .

how i can get the Address of this pages ?