Advertisement
7_2009-2012 VB function enhancement #233681

Close all forms within a project.

Add this code to a module and simply use CloseAll to unload all forms in your project.

AI

AI 요약: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

소스 코드
original-source
Sub CloseAll()
On Error Resume Next
Dim intFrmNum As Integer
 intFrmNum = Forms.Count
Do Until intFrmNum = 0
 Unload Forms(intFrmNum - 1)
 intFrmNum = intFrmNum - 1
Loop
End Sub
원본 댓글 (3)
Wayback Machine에서 복구됨