Is there a way to tell if the arguemnt was passed or not?
VB Code:
  1. Sub LoadConfiguration(ByVal ConfigurationFile As String, _
  2.  ByRef ConfigurationCollection As Collection, _
  3.  Optional ByRef KeyCollection As Collection)
  4.  If KeyCollection Then: MsgBox "twas passed" '?
  5. End Sub