Hi to any an d all that read this thread.
I have a VB.NET App that creates forms from a template.
I am having problems getting them to communicate with each other.
Is it possible to send data from one textbox in the first instance to the same textbox in another instance.
EG
Names By Letter.
Dim NewNameWindow As New FormNameWindow()
NewNameWindow .Text = "Starts With *"
NewNameWindow .Show()
Where * would be the letter you click on.
Lets say i put the name in the wrong window by mistake - is it possible to send that text to the correct form.
Issue is all forms seem to be called FormNameWindow - and i can't reference them by potential form name.
any help would be welcome.