Is there a way to use hashes in vb?
Thanks in advance,
John
Printable View
Is there a way to use hashes in vb?
Thanks in advance,
John
what do you mean by "hashes"?
example?
You can use Collections:
VB Code:
Dim c As Collection Set c = New Collection c.Add "Value", "Name" Debug.Print c("Name")
I always have a bit of hash while programing.
Aaah, it's a Collection in vb
In Perl and some other languages they call it a hash
Thank you very much for your help.
John