datagrid cell edit event

Please support our C# advertiser: Programming Forums - DaniWeb Sister Site
Thread Solved

Join Date: Jul 2007
Posts: 31
Reputation: claudiu_is is an unknown quantity at this point 
Solved Threads: 1
claudiu_is's Avatar
claudiu_is claudiu_is is offline Offline
Light Poster

datagrid cell edit event

 
0
  #1
Dec 16th, 2007
anyone knows what event can I fire when I edit the contents of a datagrid cell ?
Reply With Quote Quick reply to this message  
Join Date: Dec 2007
Posts: 35
Reputation: yagiD is an unknown quantity at this point 
Solved Threads: 7
yagiD's Avatar
yagiD yagiD is offline Offline
Light Poster

Re: datagrid cell edit event

 
0
  #2
Dec 16th, 2007
There is a whole lot of events beginning with Cell.. like

  1.  
  2. private void dataGridView1_CellEndEdit(object sender, DataGridViewCellEventArgs e)
  3. {
  4. MessageBox.Show("I have been changed");
  5. }
  6.  
  7. private void dataGridView1_CellValueChanged(object sender, DataGridViewCellEventArgs e)
  8. {
  9. MessageBox.Show("I am being changed");
  10. }
Reply With Quote Quick reply to this message  
Join Date: Jul 2007
Posts: 31
Reputation: claudiu_is is an unknown quantity at this point 
Solved Threads: 1
claudiu_is's Avatar
claudiu_is claudiu_is is offline Offline
Light Poster

Re: datagrid cell edit event

 
0
  #3
Dec 17th, 2007
I`m using .NET 2k3 so, I can`t use DataGridView
Reply With Quote Quick reply to this message  
Reply

This thread has been marked solved.
Perhaps start a new thread instead?
Message:




Views: 5966 | Replies: 2
Thread Tools Search this Thread



Tag cloud for C#
About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC