A
AMC
Hi,
I know this is a simple question so please go easy on me, but anyway. I have
a class called 'Form1' that is initialized in sub main with the code:
Public Shared Sub Main()
Application.Run(New Form1)
End Sub
How do I refer to this already created class instance from inside another
class instead of creating a new instance of the class with :
Dim f As New Form1
I need to access it's methods from other classes
THanks!
I know this is a simple question so please go easy on me, but anyway. I have
a class called 'Form1' that is initialized in sub main with the code:
Public Shared Sub Main()
Application.Run(New Form1)
End Sub
How do I refer to this already created class instance from inside another
class instead of creating a new instance of the class with :
Dim f As New Form1
I need to access it's methods from other classes
THanks!