Posted to microsoft.public.excel.programming
|
|
What is the difference in declaring a Collection in these Procedur
Ryan,
If you google things like ' "as new collection" "as collection" including:
http://discuss.fogcreek.com/joelonso...w&ixPost=24747
http://groups.google.com/groups?q=%2...L_enUS250US250
http://www.dailydoseofexcel.com/arch...ult-instances/
hth,
Doug
"RyanH" wrote in message
...
Can someone tell me the difference in these two subs, if any difference at
all?
Sub BuildCollections()
Dim colAssignedDepts As Collection
Set colAssignedDepts = New Collection
With colAssignedDepts
.Add chkEngineering
.Add chkGraphProd
' add other checkboxes
End With
End Sub
Sub BuildCollections()
Dim colAssignedDepts As New Collection
With colAssignedDepts
.Add chkEngineering
.Add chkGraphProd
' add other checkboxes
End With
End Sub
--
Cheers,
Ryan
|