Buongiorno
utilizzo questo codice per chiudere le maschere aperte
Public Function CloseAllForms() As Boolean
'*****************************************************************
'Name : CloseAllForms()
'Purpose : Close all Forms
'Author : Alessandro Baraldi
'Output : True if is OK
'*****************************************************************
On Error GoTo Err_Close
Dim n, x As Integer
n = Forms.count
For x = n - 1 To 0 Step -1
DoCmd.Close acForm, Forms(x).Name
Next
CloseAllForms = True
Exit_here:
Exit Function
Err_Close:
CloseAllForms = False
Resume Exit_here
End Function
ma se intendessi lasciarne aperte alcune se già aperte?
Nello specifico vorrei che se ho la form "SCHEDE" o la form "CLIENTI" aperte queste non vennissero chiuse con il precedente codice che si attiva su chiusura della form "FATTURE"
grazie per l'attenzione