0

我在我的Settings区域创建了一个名为DBUsername的字符串,它是一个字符串,没有任何价值。

在我的代码中

    Dim Setting As New My.MySettings
Private Sub saveButton_Click(sender As Object, e As EventArgs) Handles saveButton.Click

    If TextBox1.Text <> "" Then
        name = TextBox1.Text
        Setting.DBUsername = name '(ERROR IN THIS LINE : the property DBUsername  is Read Only )`
        Setting.Save()
    End If
End Sub
4

1 回答 1

1

在项目设置编辑器(在 Visual Studio 中)中,您的 DBUsername 属性的“范围”需要设置为“用户”。“应用程序”范围的属性是只读的。

于 2013-07-11T16:37:43.133 回答