DAO method - rs.update with an option group [closed]
I am using rs.update
to change some values. something like
rs("SomeField") = frmSomeOptionGroup.value
where I want the actual option value to be stored in the table. However, this just simply seems to return true
or false
values to the table instead of 0-2
.
What 开发者_开发百科should I do to make this concept work?
The concept should work. Can you set a breakpoint and check the value of the option group?
you should use rs.update with rs.requery
精彩评论