Could any body solve my problem i am developing windows mobile 6.1 app, when i execute the application the following exception was thrown
Format of the initialization string does not conform to specification starting at index 0.
How can i solve this problem here i attached my code as below:
Public Sub New() Me._strConnection = Path.GetDirectoryName(Assembly.GetExecutingAssembly().GetName.CodeBase()) + "\MRMClient.sdf" End Sub
Region " Open Database Connection "
Public Function Connect(ByVal _connection As String)
_SQLConnection = New SqlCeConnection(_strConnection)
If Not Connected Then
_SQLConnection.Open()
If _SQLConnection.State = ConnectionState.Open Then
Connected = True
Else
Connected = False
End If
End If
Return 0
End Function
thanks and regards
brite