| 
	Group: StrataFrame UsersPosts: 70, 
    Visits: 3.5K
 
 | 
                    
			            Thanks Keith and Jeff,
 I think I finally figured out that in C#, the CurrentRow does not have a property named Item.  So the C# code I am using is:
 
 if (! BO.CurrentRow[colCount, Data.DataRowVersion.Original] == BO.CurrentRow[colCount, Data.DataRowVersion.Current])
 
 which I think is logically equivalent to Keith's VB code as follows:
 
 If NOT BO.CurrentRow.Item(colCount, Data.DataRowVersion.Original) = BO.CurrentRow.Item(colCount, Data.DataRowVersion.Current)
 
 Notice the C# code does not use an Item property.  If I am off base, please let me  know.
 
 Sam Tenney
 
 |