Re: Listview Sub Item Edit
We're not debuggers. Give us a real question to answer, tell us what you have tried, what the problem is. Also, please use code tags.
Re: Listview Sub Item Edit
Hi,
Here I am trying to edit value in lstListView.SelectedItems[0].SubItems[3] column.
The textbox I have placed is not displayed at that coulmn position. I have done with all the possibilites but unable to place the textbox in required Location.
Re: Listview Sub Item Edit
Hi, you need to first determine the top and left edge values for the container of your listview (this may be a form if it is, then ignore these values). Next you determine the left and top edge of the listview. Now you get the listview items .position property and use the listview.item.columns[?].width property to determine how far over to go. Based on that you can calculate where to position your text box.
Re: Listview Sub Item Edit