Hi,
With my form I have a datagridview, and from the datatable the data's are loading to datagridview.
But the problem is when it's getting focus, it's selecting the whole contents of the cell of column(0) & Row(0).
But I want to select like textbox
TextBox12.SelectionStart = 0
TextBox12.SelectionLength = 0
So the prompt will be in the starting position of cell...
Is it possible for datagridview cells?
My codings for datagridview
----------------------------
DataGridView1.DataSource = ds52.Tables(0).DefaultView
----------------------------------
Any Better Idea's For Me?
Thanks Again
With my form I have a datagridview, and from the datatable the data's are loading to datagridview.
But the problem is when it's getting focus, it's selecting the whole contents of the cell of column(0) & Row(0).
But I want to select like textbox
TextBox12.SelectionStart = 0
TextBox12.SelectionLength = 0
So the prompt will be in the starting position of cell...
Is it possible for datagridview cells?
My codings for datagridview
----------------------------
DataGridView1.DataSource = ds52.Tables(0).DefaultView
----------------------------------
Any Better Idea's For Me?
Thanks Again