1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
private void ReadURLs(string filename)
{
TextReader tr = new StreamReader(filename);
string result = tr.ReadLine();
while ((result != null) && (result != "[InternetShortcut]"))
{
result = tr.ReadLine();
}
if (result != null)
{
result = tr.ReadLine();
}
if (result != null)
{
result = result.Replace("URL=", "");
tr.Close();
tr.Dispose();
this.webBrowser1.Navigate(result.ToString());
}
}
|