09-07-2012, 12:42 PM
i see u need to type the names in the textbox you could make it that if u select the user that it shows in the textbox
example:
private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{
if (listBox1.SelectedIndex != -1)
{
string name = listBox1.SelectedItem.ToString();
textBox1.Text = name;
}
}

