the First Problem i wnat to Insert into(add ) a new row above the Selected Row . this Fuction Also Like
Excel's Fuction (Insert into a new row ).. Thanks very much . And Anticipateing your solution
Hi,
The UltraWinGrid does not have any built-in search functionality. You will need to write code to loop through the rows in the grid and examine the Text of each cell.
At Frist Thanks for helping me to solve the row insert problem. now i have another problem to disturb you . It is that I want to Come true the ultrawingrid Replace and Find Function. It is like
Excel's Replace and Find Fuction. But i can't find the Find() properity in the Ultrawingrid.
Can you give my some Code Examples .Thanks very much!
This is a function of the data source to which the grid is bound. For example, if you are bound to a DataTable, you would use the DataTable.Rows.InsertAt method, and the grid would hear this change and automatically update itself.
You would have to insert a row into the grid's DataSource, then locate that row in the grid (it will probably be the last row) and then use the Move method on the Rows collection to position that row where you want it.