So I have the folowing code for a form.
Public Class tab
Public personas, formaciones, avisos, cursos As List(Of Object)
[Lots of Code]
End class
On another form I want the formaciones
List, so I can just:
ListBox1.DataSource = tab.formaciones
And it works, perfectly.
But.. How?
tab
is a class, not an instance of it, but vb is able to understand that I want the instance of that class.
What happen if there are mor than one tab
open? How does it work internally?