Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,16 @@
|
|||
Option Explicit
|
||||
Sub Test()
|
||||
Dim h As Object
|
||||
Set h = CreateObject("Scripting.Dictionary")
|
||||
h.Add "A", 1
|
||||
h.Add "B", 2
|
||||
h.Add "C", 3
|
||||
Debug.Print h.Item("A")
|
||||
h.Item("C") = 4
|
||||
h.Key("C") = "D"
|
||||
Debug.Print h.exists("C")
|
||||
h.Remove "B"
|
||||
Debug.Print h.Count
|
||||
h.RemoveAll
|
||||
Debug.Print h.Count
|
||||
End Sub
|
||||
Loading…
Add table
Add a link
Reference in a new issue