Quick References
ADO
ASP
CSS2
HTML
JavaScript
Jet SQL
VBScript
WML
WMLScript
WSH
XHTML
XML DOM
XSLT
Features
Knowledge Base
Tutorials
Partners
ZVON.ORG
XML
Planet Source Code
VisualBuilder
Web Design
Your HTML Source
XML/XSLT Forums
ASPAlliance
Scripts
Programmers Heaven
Tek-Tips Forums
Developer Fusion
Code Project
All Properties
Property: Dictionary.CompareMode
Implemented in version 2.0
object.
CompareMode
[ = comparison_mode]
The
CompareMode
property is used to set and return the key's string comparison mode which determines how keys are matched while looking up or searching. Keys can be treated as case-sensitive or case-
in
sensitive.
To do the comparison, you use the Comparison Constants. You may use either the CONSTANT (left column) or the VALUE (center column) in your code and get the same results.
CONSTANT
VALUE
DESCRIPTION
VBBinaryCompare
0
binary Comparison
VBTextCompare
1
Text Comparison
VBDataBaseCompare
2
Compare information inside database
In the following example the Add method fails on the last line because the key "b" already exists. If
CompareMode
were set to VBBinaryCompare a new key "B" (upper case) with a value of "Bentley" will be added to the dictionary.
Code:
<%
Dim d
Set d = CreateObject("Scripting.Dictionary")
d.CompareMode = VBTextCompare
d.Add "a", "Alvis"
d.Add "b", "Buick"
d.Add "c", "Cadillac"
d.Add "B", "Bentley" 'fails here.
%>
Output:
"Alvis"
"Buick"
"Cadillac"
Copyright 1999-2005 by Infinite Software Solutions, Inc. All rights reserved.
Trademark Information