我一直试图在sharpdevelop中的VB.net表单上勾选一个复选框。数据来自SQLite数据库,是一个布尔字段。我试过的代码如下,但似乎不起作用!我想这会非常简单,但这是漫长的一天!
If SQLreader("Parent_1_Responsibility") = True Then
PDV_P1_Parental.Checked = True
PDV_P1_Parental.CheckState = True
End If
这似乎根本不起作用!请帮我! :L
由于
答案 0 :(得分:0)
SQLite does not have a boolean data type。
如果您的值在数据库中存储为0/1,请检查:
If SQLreader("Parent_1_Responsibility") <> 0 Then