Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to extract string list from an Object ?

Status
Not open for further replies.

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!
 
Solved...

Dim FileNameArray As String()
Dim oObj as Object

FileNameArray = CType(oObj, String())
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top