How/where is Namespace My declared?
e.g. I started a new, empty project, then added a module like this:
But I get an error message:
'My' is not declared
So, what should I do in Visual Studio to cause the declaration to be built?
e.g. I started a new, empty project, then added a module like this:
Code:
Module Module1
Sub main()
My.Computer.Clipboard.SetText("test my")
End Sub
End Module
Quote:
'My' is not declared