private void IDC_INP_Click(object sender, EventArgs e) { String str = IDC_COMBO.Text; IDC_COMBO.Items.Add(str); IDC_EXPLORER.Navigate(str); }
private void IDC_INP_Click(object sender, EventArgs e) { String str = IDC_COMBO.Text; IDC_COMBO.Items.Add(str); IDC_EXPLORER.Navigate(str); //IDC_BACK.Enabled = IDC_EXPLORER.CanGoBack; //IDC_FORWARD.Enabled = IDC_EXPLORER.CanGoForward; }
private void IDC_INP_Click(object sender, EventArgs e) { var str = IDC_COMBO.Text; var address = str.Replace(Local, ReplaceLocal); IDC_COMBO.Items.Add(str); IDC_EXPLORER.Navigate(address); IDC_PROGRESS.Visible = true; expectionLbl.Visible = false; }