Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
  Database
Automation
OS/Networking
Graphics
Links
Tools
» Regular Expr Tester
» Free Tools

CompareList - Compare an argument with a list of values

Total Hit ( 2373)

Rate this article:     Poor     Excellent 

 Submit Your Question/Comment about this article

Rating


 



Click here to copy the following block
' Return the position of the argument in a list of values
' or zero if the argument isn't included in the list
' It works for both regular values and for objects
'
' This handy function can often save you a lengthy Select Case
' statement or a complex series of If...ElseIf blocks
'
' Example: check whether a string is a valid continent name
'   If CompareList(aString, "America", "Europe", "Asia", '     "Africa",
' "Australia") > 0 Then MsgBox "OK"

Function CompareList(Arg As Variant, ParamArray Values() As Variant) As Boolean
  Dim index As Long
  If IsObject(Arg) Then
    ' comparison between objects
    For index = 0 To UBound(Values)
      If Not IsObject(Values(index)) Then
        ' argument isn't an object, skip it
      ElseIf Arg Is Values(index) Then
        CompareList = index
        Exit Function
      End If
    Next
  Else
    ' comparison between non-object values
    For index = 0 To UBound(Values)
      If IsObject(Values(index)) Then
        ' argument is an object, skip it
      ElseIf Arg = Values(index) Then
        CompareList = index
        Exit Function
      End If
    Next
  End If
End Function



Submitted By : Nayan Patel  (Member Since : 5/26/2004 12:23:06 PM)

Job Description : He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting.
View all (893) submissions by this author  (Birth Date : 7/14/1981 )


Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.