Datagrid related
-
Hi friends, One problem i am stuck in please try to help. I want to create a code where, when user clicks one row of the datagrid filled with data, the particular column value for e.g. the value of second column of the selected row should be visible on the text field present on the same form after a click of a button. The sequence will be 1. First user click and selects one row 2. Then clicks a particular button 3. As click event is fired the value present in the second column of the selected row displays in the textbox present on the same form. Try helping out please.
Nikhil Bandekar Mumbai, India
-
Hi friends, One problem i am stuck in please try to help. I want to create a code where, when user clicks one row of the datagrid filled with data, the particular column value for e.g. the value of second column of the selected row should be visible on the text field present on the same form after a click of a button. The sequence will be 1. First user click and selects one row 2. Then clicks a particular button 3. As click event is fired the value present in the second column of the selected row displays in the textbox present on the same form. Try helping out please.
Nikhil Bandekar Mumbai, India
hi is this windows or web application ??
Tamimi - Code
-
hi is this windows or web application ??
Tamimi - Code
it is windows vb.net i refered to the code u had given for hasan, regarding datagrid. I hope you would try to help me even. It seems you have good knowledge woking with datagrid
Nikhil Bandekar Mumbai, India
-
it is windows vb.net i refered to the code u had given for hasan, regarding datagrid. I hope you would try to help me even. It seems you have good knowledge woking with datagrid
Nikhil Bandekar Mumbai, India
hi put this line TextBox1.Text = DataGrid1(DataGrid1.CurrentCell.RowNumber, 1) on CurrentCellChanged event for thr datagrid or on any button click
Tamimi - Code
-
hi put this line TextBox1.Text = DataGrid1(DataGrid1.CurrentCell.RowNumber, 1) on CurrentCellChanged event for thr datagrid or on any button click
Tamimi - Code
hiii Thanks a lots it worked out... I was struggling from when. Thanks again for the favor. :-D Bye Take Care
Nikhil Bandekar Mumbai, India
-
hiii Thanks a lots it worked out... I was struggling from when. Thanks again for the favor. :-D Bye Take Care
Nikhil Bandekar Mumbai, India
you are welcome
Tamimi - Code