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