hi, how can i list all addresses starting with a letter which is typed in the textbox
( for example, listing of email address)
hi, how can i list all addresses starting with a letter which is typed in the textbox
( for example, listing of email address)
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.
CutchPosted Jun 22, 2008, 6:03 PM
String[] emails=
{"[email protected]","[email protected]","[email protected]","[email protected]","[email protected]"};
foreach(String email in emails){
if(email.StartsWith(textbox1.Text)){
listbox1.add(email);
}
}