I've found more articles that I can shake a stick at regarding the function being called, but there is nothing that shows how to declare this event and call it. Here is what I am using for the function:
void handler_dataGridView1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
Here is what I am trying to accomplish:
dataGridView1.CellStateChanged += new System.Windows.Forms.DataGridViewCellStateChangedEventHandler(dataGridView1.CellStateChanged += new System.Windows.Forms.DataGridViewCellStateChangedEventHandler(handler_dataGridView1_CellFormatting(this.dataGridView1, ***what goes here?***));
Any help greatly appreciated, thanks!