예제 #1
0
 private void TB_TleUrl_TextChanged(object sender, EventArgs e)
 {
     if (!Uri.IsWellFormedUriString(TB_TleUrl.Text, UriKind.Absolute))
     {
         EP_Validator.SetError(TB_TleUrl, "Must enter a validate URL");
     }
 }
예제 #2
0
        private void BT_OK_Click(object sender, EventArgs e)
        {
            WebClient WC = new WebClient();

            try
            {
                Log.Write("Getting URL: " + TB_TleUrl.Text);
                TLEData = WC.DownloadString(TB_TleUrl.Text);
            }
            catch (Exception ex)
            {
                Log.WriteError(ex);
                EP_Validator.SetError(TB_TleUrl, ex.Message);
                return;
            }

            DialogResult = DialogResult.OK;
            //this.Close();
        }