.Fields("intcount")如何使用
for intcount=0 to 5
txtItem(intcount)=.Fields( "intcount ")
next
其中.fields指出有错误。
[解决办法]
.Fields( "intcount ")你这个在With中吗,
[解决办法]
with Recordset1
for intcount=0 to 5
txtItem(intcount)=.Fields(intcount)
next
end with