北京 | 上海 | 天津 | 重庆 | 广州 | 深圳 | 珠海 | 汕头 | 佛山 | 中山 | 东莞 | 南京 | 苏州 | 无锡 | 常州 | 南通 | 扬州 | 徐州 | 杭州 | 温州 | 宁波 | 台州 | 福州 | 厦门 | 泉州 | 龙岩 | 合肥 | 芜湖 | 成都 | 遂宁 | 长沙 | 株洲 | 湘潭 | 武汉 | 南昌 | 济南 | 青岛 | 烟台 | 潍坊 | 淄博 | 济宁 | 太原 | 郑州 | 石家庄 | 保定 | 唐山 | 西安 | 大连 | 沈阳 | 长春 | 昆明 | 兰州 | 哈尔滨 | 佳木斯 | 南宁 | 桂林 | 海口 | 贵阳 | 西宁 | 乌鲁木齐 | 包头 |
原始代码是这样,是可以正常批量修改成功的:
Public Function bb()
Path1 = "E:\vod\"
OldName = Dir(Path1 & "*")
Do While OldName <> ""
If Right(OldName, 3) = "dat" Then
NewName = Replace(OldName, "自由", "特例")
Name Path1 & OldName As Path1 & NewName
End If
OldName = Dir
Loop
End Function
但改为下面这样就不行了,没有提示错误:
Public Function aa()
Dim OldName, NewName, Path1, strsql, gs, gm, yz, lb As String
Path1 = "E:\vod\"
OldName = Dir(Path1 & "*")
strsql = "SELECT * FROM 表1;"
Dim db As ADODB.Connection
Dim rs As New ADODB.Recordset
Set db = CurrentProject.Connection
rs.Open strsql, db, 1, 3
If rs.RecordCount = 0 Then
MsgBox "没有任何数据!", vbInformation, "系统提示!"
rs.Close
Exit Function
End If
While Not rs.EOF
gs = rs("Singer") '歌手
gm = rs("SongName") '歌名
yz = rs("LangClass") '语种
lb = rs("SongStyle") '类别
If Right(OldName, 3) = "dat" Then
NewName = Replace(OldName, gm, gs & "-" & gm & "(" & yz & "-" & lb & ")")
'MsgBox NewName
Name Path1 & OldName As Path1 & NewName
End If
OldName = Dir
rs.MoveNext
Wend
rs.Close
Set conn = Nothing
Set rs = Nothing
End Function