dipgohil79
Programmer
hi to all
I want to crate a table ('tblStatus") in which there is a field ( fldCheck ). I want to make that field Yes/No type. I am trying to do this with following code :
dim strSQL as string
strSQL = "CREATE TABLE tblStatus ( " & _
"fldCheck yesno )"
con.Execute strSQL
Here con is my ADO connection.
When i open the Access table Design it will show me the fields with yes/no type but in the data mode it show me "yes" or "no" in the fields. I want Checkbox view in the yes/no fields.
Thanks in advance
I want to crate a table ('tblStatus") in which there is a field ( fldCheck ). I want to make that field Yes/No type. I am trying to do this with following code :
dim strSQL as string
strSQL = "CREATE TABLE tblStatus ( " & _
"fldCheck yesno )"
con.Execute strSQL
Here con is my ADO connection.
When i open the Access table Design it will show me the fields with yes/no type but in the data mode it show me "yes" or "no" in the fields. I want Checkbox view in the yes/no fields.
Thanks in advance