0

そのため、IDE がFileLoadException. デバッガーは、ここMixed mode assembly is built against version 'v2.0.50727' of the runtime and cannot be loaded in the 4.0 runtime without additional configuration information. にあるソリューションにコードを追加すると、ファイルのコードで未処理が発生すると言います。ConfigurationErrorException: Configuration system failed to initializeSettings.Designer.vb

Public Property needsSetup() As Boolean
        Get
            Return CType(Me("needsSetup"),Boolean) ''It gives the error here.''
        End Get
        Set
            Me("needsSetup") = value
        End Set
End Property

これが私が働こうとしているコードです:

Private Sub Button1_Click(ByVal sender As System.Object, 
                          ByVal e As System.EventArgs) Handles Button1.Click
    Dim dblist() As Array = sqlQuery()
End Sub

Function sqlQuery()
    Dim dbConnection As SQLiteConnection = New SQLiteConnection("database.sqlite")
    dbConnection.Open()
    Dim readCommand = dbConnection.CreateCommand()
    readCommand.CommandText = "SELECT * FROM thetablez"
    Dim sqlReader As SQLiteDataReader
    sqlReader = readCommand.ExecuteReader()
    Dim list(1) As String
    Dim cntr As Integer = 1
    While (sqlReader.Read())
        list(cntr) = sqlReader("identifier")
        ReDim Preserve list(list.Length + 1)
        cntr += 1
    End While
    dbConnection.Close()
    Return list
End Function

このライブラリが機能することが本当に必要です。そうしないと、32 MB のものをアプリケーション コードにコピーすることになります。助けてください。解決策がある場合は、ユーザー名がクレジットに表示されます (インセンティブ)。ありがとう!

4

0 に答える 0