Mega Code Archive

 
Categories / VisualBasic Script / Data Type
 

One of the few instances in which you have no choice for using a Variant

Sub fewInstance()     Dim varArray As Variant     varArray = Array("Element1", 2, "Another string") End Sub