RESOLVED
Thanks!
This is about what I thought it should be.
I was using Dim, instead of Private.
Duh
TTn
At the VBforum I got this example, which works too but is a little more involved. Pretty cool though, this is also what I suspected if not trivial.
Code:Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click On Error Resume Next Dim fSound As New frmSound AddHandler fSound.txt.TextChanged, AddressOf ChangeHandler End Sub Private Sub ChangeHandler(ByVal sender As Object, ByVal e As EventArgs) Me.txt2.Text = DirectCast(sender, TextBox).Text End Sub




Reply With Quote