I need to share variables across two forms in VB.NET. One of them is the main form and the other is a child form.
I have been searching, and I have found a few metho
You can add public properties to either form. They can access those properties from each other. (That is not called shared though, and is not static in most cases.)