Hi,
Below are the steps to reproduce an issue.
1. Created Form1.cs
2. Added split container to Form1.cs
3. Added panel to SplitContainer.Panel2
4. Created Form2.cs
5. Added three textbox controls to Form2.cs
6. Added below lines of code
Form2 frm2 = new Form2();
frm2.TopMost = true;
frm2.TopLevel = false;
frm2.BringToFront();
frm2.Parent = panel1;
frm2.Show();
Initially cursor is at 0th position and when trying to place cursor in the middle using mouse, full text is getting selected. I am unable to place cursor on mouse click at specified position .
