Hello,
I have a class which is a defenition of a editable list view ,the cells
in this list are text boxes:
public SMK_EditListVie w()
{
this.columnHead er1 = new System.Windows. Forms.ColumnHea der();
this.columnHead er2 = new System.Windows. Forms.ColumnHea der();
this.Columns.Ad dRange(new System.Windows. Forms.ColumnHea der[] {
this.columnHead er1,
this.columnHead er2 });
this.Controls.A ddRange(new System.Windows. Forms.Control[]
{this.editBox}) ;
}
My problem is how to detect (while I am catching an event) which one of
the columns(text box) being accessed?
Thank you very much!
*** Sent via Developersdex http://www.developersdex.com ***
I have a class which is a defenition of a editable list view ,the cells
in this list are text boxes:
public SMK_EditListVie w()
{
this.columnHead er1 = new System.Windows. Forms.ColumnHea der();
this.columnHead er2 = new System.Windows. Forms.ColumnHea der();
this.Columns.Ad dRange(new System.Windows. Forms.ColumnHea der[] {
this.columnHead er1,
this.columnHead er2 });
this.Controls.A ddRange(new System.Windows. Forms.Control[]
{this.editBox}) ;
}
My problem is how to detect (while I am catching an event) which one of
the columns(text box) being accessed?
Thank you very much!
*** Sent via Developersdex http://www.developersdex.com ***
Comment