Whenever I try to open a form inside a DLL library, it returns "Reference to an non-shared member requires an object reference", even if it is in the same Class. If I try to replace the name of the form with Me (When it is in the same class), I get ""Me" is only within an instance method". Here is the code :
Public Class Prompt
Shared Function open_prompt()
Prompt.Show()
End Function
End Class
Any help would be appreciated