how do you programatically invoke a listview label edit - Stack Overflow most recent 30 from stackoverflow.com 2009-11-24T23:12:47Z http://stackoverflow.com/feeds/question/32103 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/32103/how-do-you-programatically-invoke-a-listview-label-edit 1 how do you programatically invoke a listview label edit geocoin 2008-08-28T12:41:04Z 2008-09-20T02:24:50Z <p>in C# I'd like to invoke the label edit of a newly added item to a ListView. basically, if I have a <em>click here to add</em> scenario, as soon as the new item is added, I want the text label to be in a user editable state. Thanks!</p> http://stackoverflow.com/questions/32103/how-do-you-programatically-invoke-a-listview-label-edit/32113#32113 2 Answer by geocoin for how do you programatically invoke a listview label edit geocoin 2008-08-28T12:44:05Z 2008-08-28T22:25:31Z <p><a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.listviewitem.beginedit.aspx" rel="nofollow">found it!</a></p> <pre><code>ListViewItem::BeginEdit(); </code></pre>