
variable names during run time ?
Hash Tabe wil help you. Try using them. They are Key-Value pairs.
Dim myHT As New Hashtable()
for each tag in xmlkeep adding them to hash table
dim X as string="xxx" ' Obtain values from XML
dim Y as String = "zzz" ' Obtain values from XML
myHT.Add(X, Y)
loop
Let me know How this helped You
Good Luck
B Harish Kamath
Quote:
> Is there a way to dynamically assign Variable Names using Strings that i
get
> from the database
> For eg I have
> webspherePath
> and C:\websphere
> returned from a XML file ,
> i want to declare a variable named
> wespherePath as String = "c:\websphere"
> thanks
> Ram