Hi
Not sure about using a toggle button for this is the best idea but ....
To select all the items in a list box
With Me.ListBoxName
For lngX = Abs(.ColumnHeads) To (.ListCount - 1)
.Selected(lngX) = True
Next
End With
This is normally used to do "something" so you could use
Public Sub SomeButtonName_Click()
Dim varItem As Variant
With Me.ListBoxName
For lngX = Abs(.ColumnHeads) To (.ListCount - 1)
.Selected(lngX) = True
Next
End With
For Each varItem In Me.ListBoxName.ItemsSelected
'add what you want to do in the section - like print reports, etc'
Next varItem
End Sub
HTH