Hi,
You will have to raise the events your self when the textchanges.
Here is a simple example.
Public Class UserControl1
Inherits System.Windows.Forms.UserControl
#Region " Windows Form Designer generated code "
Public Shadows Event TextChanged(ByVal sender As Object, ByVal e As
EventArgs)
Public Shadows Property Text() As String
Get
Return TextBox1.Text
End Get
Set(ByVal Value As String)
TextBox1.Text = Value
End Set
End Property
Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles TextBox1.TextChanged
RaiseEvent TextChanged(Me, e)
End Sub
End Class
Ken