This does call the delegate and at the point where the UltratextEditor1.text is assigned it does have the value correctly but does not actually display on child form. This works OK if I do not use a tabbed mdi mgr, but regular MDI without tabs. I cannot figure out what I'm doing wrong. Any suggestions?
Here is an example simple app that demonstrates what is not working.
The value of the textbox is equal to what is sent but is not displayed on the tabbed form.
Hello Greg,
I research your sample and I made small modifications in the :
Private Sub cmdChangeDate_Click(sender As System.Object, e As System.EventArgs) _ Handles cmdChangeDate.TextChanged If UltraTabbedMdiManager1.ActiveTab IsNot Nothing Then DirectCast(UltraTabbedMdiManager1.ActiveTab.Form, Form1).UltraTextEditor1.Value = Me.cmdChangeDate.Text End If End Sub
Private Sub cmdChangeDate_Click(sender As System.Object, e As System.EventArgs) _
Handles cmdChangeDate.TextChanged
If UltraTabbedMdiManager1.ActiveTab IsNot Nothing Then
DirectCast(UltraTabbedMdiManager1.ActiveTab.Form, Form1).UltraTextEditor1.Value = Me.cmdChangeDate.Text
End If
End Sub
Could you please take a look at the attached smaple for more details and let me know if you have any questions.
Regards
Thanks for the feedback. If you have any further questions, do not hesitate to write us
works like a charm ....
thanks.