Forms Unloader

By | 2002-06-01

This code unloads all the forms of the program returning the resources back to the computer

Original Author: rbennett

Inputs

Optional force input as a boolean

Assumptions

This code is pretty straight forward and an understanding of loops and arrays is will help.

Code

Private Sub unloader(Optional ByVal ForceClose As Boolean = False)
  Dim i As Long
  
On Error Resume Next
  For i = Forms.Count - 1 To 0 Step -1
    Unload Forms(i)
    Set Forms(i) = Nothing
    If Not ForceClose Then
      If Forms.Count > i Then
        Exit Sub
      End If
    End If
  Next i
  
  If ForceClose Or (Forms.Count = 0) Then Close
  If ForceClose Or (Forms.Count > 0) Then End
  
End Sub

Author: dwirch

Derek Wirch is a seasoned IT professional with an impressive career dating back to 1986. He brings a wealth of knowledge and hands-on experience that is invaluable to those embarking on their journey in the tech industry.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.