CType(resources.GetObject(), Boolean) in Windows generated code
When I create a form it merely has the normal:
Me.btnSearch.Text = "Search"
versus this from the TaskVision MainForm:
Me.btnSearch.Text = resources.GetString("btnSearch.Text")
I've added the 'Dim resources As System.Resources.ResourceManager = New System.Resources.ResourceManager(GetType(MainForm))' to the InitializeComponent() but I'm confused.
Thanks...if you can clarify.

