Why doesn't this declaration work in my forms
Why doesn't this declaration work in my forms
Imports microsoft.VisualBasic
Imports System.Data
Imports System.Data.OleDb
Imports System.IO
Public Class ClassPrimary
Friend s As String = ControlChars.CrLf
Shared Sub main()
Application.Run(New frmStartup)
End Sub
End Class
When I type s in a form it is said to be undeclared.
dennist

