I got it!

on the calling form i put,

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim Instanceform2 As New Wuploader

If DataRepeater1.CurrentItem Is Nothing Then Exit Sub

Instanceform2.XValue = DataRepeater2.CurrentItem.Controls("TblidTextBox1").Text()

Instanceform2.ShowDialog()
End Sub


and on the form called i put

Private x As String

Public Property XValue() As String
Get
Return x
End Get
Set(ByVal value As String)
x = value
End Set
End Property

Me.TextBox2.Text = x.ToString





Thanks just the same