Solution to this topic (I think :crazy

dim _copybo as gettype(me.primarybusinessobject) '<---- something like this exist on VB?
I found the solution

I have to take some class on .net

My "full" working code:
--------------
Private _CopyBO As MicroFour.StrataFrame.Business.BusinessLayer
Dim sOldFilter As String = Me.PrimaryBusinessObject.Filter
Dim _CurrentRowIndex As Integer = Me.PrimaryBusinessObject.CurrentRowIndex
Me.PrimaryBusinessObject.Filter = Me.PrimaryBusinessObject.PrimaryKeyField & " = " & Me.PrimaryBusinessObject(Me.PrimaryBusinessObject.PrimaryKeyField)
'Instantiate a object from the same type as the primaryBusinessObject
_CopyBO = Activator.CreateInstance(Me.PrimaryBusinessObject.GetType)_CopyBO.CopyDataFrom(Me.PrimaryBusinessObject, MicroFour.StrataFrame.Business.BusinessCloneDataType.ClearAndFillFromCompleteTable)
Me.PrimaryBusinessObject.Filter = sOldFilter
'Me.NavigateToPrimaryKey(_RegistroEnMemoriaBO(_RegistroEnMemoriaBO.PrimaryKeyField))[/quote]
Now I have a _CopyBO with 1-row copy of my actual PrimaryBusinessObject

Thanks and sorry for all the posts that I write for a simple topic (because my dificulties to write more understand posts)