Hi
I am developing windows application using C#.There is combo box in the windows application ,once user select value it automatically generate pop window.I want to appear the new window at the right side lower corner in combo box.I tused below coding ,but it never works,please let me know how to do implement this.
Form F = new Form();
F.StartPosition = FormStartPosition.Manual;
F.Location = new Point(comboBox1.Location.X+comboBox1.Width, comboBox1.Location.X+comboBox1.Width+comboBox1.Height+comboBox1.Width);
F.Size = new Size(272, 100);
F.Show();
Thanks
Tank