CodePaste Logo
New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Format:
Recent snippets matching tags of DataGridView
C#
namespace WindowsFormsApplication1
{
    public partial class Form1 : System.Windows.Forms.Form
    {
        public Form1()
        {
            InitializeComponent();
 
            // create list of data
            var _List = new System.Collections.Generic.List<Data> 
by Jerry Nixon   January 24, 2011 @ 2:17pm
1709 Views
1 comments
 
C#
private void dataGridViewOrders_SelectionChanged(object sender, EventArgs e)
{
    dataGridViewOrderDetails.DataSource = null;
    if (dataGridViewOrders.SelectedRows.Count == 0) return;
 
    DataGridViewRow row = dataGridViewOrders.SelectedRows[0];
    if (row == null) return;
 
    int orderId = int.Parse(row.Cells["OrderId"].Value.ToString());
by dereklawless   February 12, 2010 @ 9:43pm
162 Views
no comments
 
brought to you by:
West Wind Techologies



If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate