StrataFrame Forum

CurrentRow Setting.

http://forum.strataframe.net/Topic16170.aspx

By Ertan Deniz - 5/5/2008

I've added a row to my business object over CurrentTable.ImportRow method. The row is an currentRow of an another object with the same type. Since Business Object Translation is a complicated work, I've choosen this method.

How can I make this row as current row ? So , I can easily access to its properties without exception?

By Trent L. Taylor - 5/6/2008

How can I make this row as current row ? So , I can easily access to its properties without exception?

I guess I am confused as to the point of the issue.  When you call ImportRow it imports all of the columns, etc. from one data table into another.  So once it is in the BO, you would just need to navigate or seek to that record....it would then become the current row.

By Ertan Deniz - 5/6/2008

Thanks