vba遍历法查询连续数
答案:2 悬赏:60 手机版
解决时间 2021-03-03 01:32
- 提问者网友:最爱你的唇
- 2021-03-02 05:31
vba遍历法查询连续数
最佳答案
- 五星知识达人网友:酒醒三更
- 2021-03-02 06:50
引用ado2.8组件
dim dbconn as new adodb.connection
dim dbrst as new adodb.recordset
dim connstring as string
connstirng="provider=microsoft.ace.oledb.12.0;database=d:\database.accdb"
dbconn.open connstring
dbrst.open "select * from 表名",dbconn
dbrst.movefirst
do until dbrst.eof
for i=0 to dbrst.fields.count-1
debug.print dbrst.fields(i).name,dbrst.fields(i).value
next
dbrst.movenext
loop
set dbrst=nothing
dim dbconn as new adodb.connection
dim dbrst as new adodb.recordset
dim connstring as string
connstirng="provider=microsoft.ace.oledb.12.0;database=d:\database.accdb"
dbconn.open connstring
dbrst.open "select * from 表名",dbconn
dbrst.movefirst
do until dbrst.eof
for i=0 to dbrst.fields.count-1
debug.print dbrst.fields(i).name,dbrst.fields(i).value
next
dbrst.movenext
loop
set dbrst=nothing
全部回答
- 1楼网友:詩光轨車
- 2021-03-02 07:44
Visual Basic for Applications(VBA)是Visual Basic的一种宏语言,是微软开发出来在其桌面应用程序中执行通用的自动化(OLE)任务的编程语言。主要能用来扩展Windows的应用程式功能,特别是Microsoft Office软件。也可说是一种应用程式视觉化的Basic 脚本。该语言于1993年由微软公司开发的的应用程序共享一种通用的自动化语言--------Visual Basic For Application(VBA),实际上VBA是寄生于VB应用程序的版本。微软在1994年发行的Excel5.0版本中,即具备了VBA的宏功能
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯