我在我的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
答案 0 :(得分:0)
在“项目设置”编辑器(在Visual Studio中)中,需要将DBUsername属性的“范围”设置为“用户”。 “应用程序”作用域属性是只读的。