VB Code:
Process[] allProcs = Process.GetProcessesByName("iexplore"); listView1.Items.Clear(); foreach (Process ps in allProcs) { listView1.Items.Add( ps.MainWindowTitle ); }
this code show the title of the Explorer pages .
how i can get the Address of this pages ?


Reply With Quote