Hi I thought this is something new if anyone come form VB6. In VB6 you can just access to other forms easily, but in VB.NET or any other MS framework programming is not the case. Take a look at the example and have fun 🙂
Can you just do frmName.propertyName ? that should work.
That works most of the time… but if you start getting multiple threads running, you can run into some problems. I usually create a module to hold the properties that I want to pass back and forth between forms and have never run into a problem with this approach.
everytime you create a new object a new thread is created, you would have to keep track off it. by determine if isNothing then create, else reuse the created object.