Error: Type "Solution" is not defined???
Esteemed Forum Participants and Lurkers:
The VB.Net Help examples FREQUENTLY omit essential tidbits of information, and are thus useless (to me, the newbie). I cut the "Solution" and "Globals" code straight out of the "VariableExists" examples, but it doesn't compile because "Solutions" is "not defined". I'm guessing I have to Import some namespace?
Code:
Imports System
Imports System.IO
Module Ini_Process
Private objSoln As Solution '<<< ERROR: Type 'Solution' is not defined
Public g_test As Integer
Sub test()
' Do some file operations here!!!
If objSoln.Globals.VariableExists("g_test") Then
MsgBox("Variable EXISTS")
End If
End Sub
End Module
How do I get "Solutions" defined???
Thank you for any comments, suggestions, and assistance.