First I would like to thank you to anyone that give an answer to my question.
I have a table like this one below (KeyID is auto-increment)...
Code:
KeyID UserID Amount 1 12 1.00 2 09 1.00 3 12 5.00 4 12 6.00 5 10 2.00
KeyID UserID Amount 1 12 1.00 2 09 1.00 3 12 5.00 4 12 6.00 5 10 2.00
ResolveUrl("~/");
namespace MainEvent { public partial class Form1 : Form { ServiceReference1.WebService DoThis = new ServiceReference1.WebService(); DataSet ds; //First button. private void btnFindAttendee_Click(object sender, EventArgs e) { ds = new DataSet(); ds = DoThis.BuildFindAttendeesList();
Leave a comment: