Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as C# by amazia ( 16 years ago )
private void Production_CheckedChanged(object sender, EventArgs e)
{
string ServiceURL;
if (Production.Checked == true)
{
ServiceURL = ("http://update.traumacad.com/clickoncews/webservice.asmx");
//Production.Text = ServiceURL;
//MessageBox.Show(Production.Text);
MessageBox.Show(ServiceURL);
}
else
{
ServiceURL = Other_Web_service.ToString();
Other_Web_service.Text = ServiceURL;
MessageBox.Show(Other_Web_service.Text);
}
}
Revise this Paste