This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private void login_btn_Click(object sender, EventArgs e) | |
{ | |
DKServices.ActivityRow activityR = new DKServices.ActivityRow(); | |
DKServices.ServiceSoapClient client = new DKServices.ServiceSoapClient(); | |
this.output_tb.Text = "Querying the web service...."; | |
try | |
{ | |
activityR = client.GetUserActivity("bengt", "johansson"); | |
} |