.show()

fkheng

Centurion
Joined
May 8, 2003
Messages
155
Location
Malaysia
frmMain.Show()

i wrote this syntax above and the whole thing got underlined in blue

and a warning stating that Reference to a non-shared member requires an object reference.

I read from the SDK that .show() is inherited from a control? What does this mean? and how do i solve this problem?
 
This one's always a favourite as well:

Code:
    Public Sub main()
        Application.Run(New Form1)
    End Sub

(Although this is only for launching your main form during application startup).
 
Back
Top