May 1, 2002 #1 KPharm Programmer Feb 1, 2001 38 US If I have an Object with a string array inside of it, how can I parse it or assign it to a real string list? Dim oObj as Object Dim sStringList() as String oObj contains the string list. Thanks!
If I have an Object with a string array inside of it, how can I parse it or assign it to a real string list? Dim oObj as Object Dim sStringList() as String oObj contains the string list. Thanks!
May 2, 2002 Thread starter #2 KPharm Programmer Feb 1, 2001 38 US bump up.... I'm really stuck. Upvote 0 Downvote
May 4, 2002 Thread starter #3 KPharm Programmer Feb 1, 2001 38 US Solved... Dim FileNameArray As String() Dim oObj as Object FileNameArray = CType(oObj, String()) Upvote 0 Downvote