i managed to do somehow what i want by doing this
private void textBox1_Enter(object sender, EventArgs e)
{
textBox1.Text = "a1";
}
But i want this to happen without clicking on the textbox The way i did upper required me to click before a1 will be written there.