VS.NET 2002/2003Discussions about the Visual Studio.NET programming environment, the 2002 (1.0) and 2003 (1.1).
** Please don't post code questions here **
For issues specific to a particular language in .NET, please see the other forum categories.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the VS.NET 2002/2003 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
How can we add a button or a linklabel to the datagrid Dynamically by placing a separate column for that.For example i want to delete that row so for that i want to add a column which contains only button delete in the entire column and we have to add dynamically to all the rows displayed in the datagrid.Can any one help me.
You need to add a button column to your datagrid columns collection. Specify the command name as "Delete", then you can use the datagrid's DeleteCommand event to handle it.