Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 VB6 中,如何遍历.frm文件夹中的所有文件并对每个文件执行操作?
.frm
MyFile = Dir(CurDir() & "\" & "*.frm") Do While MyFile <> "" ' do stuff to file MyFile = Dir Loop