hi there,
am trying to select three values from a textbox1 ="BANK BALANCE 110010" to three labels - lblbank, lblbalance & lblaccountnumber
i will be grateful for any help
thanks
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Marvin kakuruPosted Feb 7, 2016, 5:33 AM
string[] output = input.Split(' ');
lblbank.Text = output[0];
lblquery.Text = output[1];
lblid.Text = output[2];