برای این کار از کد زیر استفاده می کنیم:
private void RichTextBox_MouseClick(object sender, MouseEventArgs e)
{
if ((txtBarname.Text.Trim()).Length == 0)
txtBarname.Focus();
SendKeys.Send("{HOME}");
}