Author Topic: IDictionary.HashVal Property  (Read 3747 times)

0 Members and 1 Guest are viewing this topic.

Offline José Roca

  • Administrator
  • Hero Member
  • *****
  • Posts: 2530
  • User-Rate: +209/-0
  • Gender: Male
IDictionary.HashVal Property
« on: July 13, 2008, 10:30:55 PM »

The following example illustrates the use of the HashVal property.

Code: [Select]
#INCLUDE "windows.inc"
#INCLUDE "scrrun.inc"

DIM pDic AS IDictionary
DIM vKey AS VARIANT
DIM vItem AS VARIANT
DIM vHashVal AS VARIANT

' Create an instance of the Dictionaty object
pDic = NEWCOM "Scripting.Dictionary"
' Add some key/item pairs to the dictionary
vKey = "a" : vItem = "Athens"
pDic.Add vKey, vItem
vKey = "b" : vItem = "Belgrade"
pDic.Add vKey, vItem
vKey = "c" : vItem = "Cairo"
pDic.Add vKey, vItem
' Get the hash value of the "c" key
vKey = "c"
vHasVal = pDic.HashVal(vKey)
« Last Edit: July 13, 2008, 10:56:09 PM by José Roca »