Zbiór zmian 197
- Data:
- 2009-01-19 09:34:52 (17 years ago)
- Pliki:
-
- 1 zmodyfikowane
-
trunk/BazaReklam/About.cs (zmodyfikowane) (2 diffs)
Legenda:
- Bez zmian
- Dodane
- Usunięte
-
trunk/BazaReklam/About.cs
r171 r197 1 1 using System; 2 using System.Collections.Generic;3 using System.ComponentModel;4 using System.Data;5 using System.Drawing;6 using System.Text;7 2 using System.Windows.Forms; 8 3 … … 22 17 private void btnClose_Click(object sender, EventArgs e) 23 18 { 24 this.Close();19 Close(); 25 20 } 26 21 27 22 private void lblVersionInfo_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) 28 23 { 29 System.Diagnostics.Process.Start(string.Format(ConfigurationManager.AppSettings["Application.Version.Url"], 30 Application.ProductVersion)); 24 string url = string.IsNullOrEmpty(ConfigurationManager.AppSettings["Application.Version.Url"]) 25 ? "http://www.infocity.pl/baza_reklam/versioninfo.html#{0}" 26 : ConfigurationManager.AppSettings["Application.Version.Url"]; 31 27 28 System.Diagnostics.Process.Start(string.Format(url, Application.ProductVersion)); 32 29 } 33 30 }
