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

Items of ParamArray can be Missing

Total Hit ( 3328)

Rate this article:     Poor     Excellent 

 Submit Your Question/Comment about this article

Rating


 


When using the ParamArray keyword within a procedure, always remember that when the procedure is invoked from elsewhere in the program one of the argument might be omitted, and you should keep this into account. Here is an example of a routine that uses ParamArray:

Click here to copy the following block
Function Max(ParamArray args() As Variant) As Variant
 Dim result As Variant, index As Integer
 result = args(LBound(args))
 For index = LBound(args) + 1 To UBound(args)
  If result < args(index) Then result = args(index)
 Next
 Max = result
End Function

The above routine works fine, but only if the programmer doesn't omit any argument in the list. If you recall the function as in:

Print Max(1, , 3)  

the function will raise a "Type Mismatch" error. Here's a better version, that also accounts for missing arguments:

Click here to copy the following block
Function Max(ParamArray args() As Variant) As Variant
 Dim result As Variant, index As Integer
 For index = LBound(args) To UBound(args)
  If IsMissing(args(index)) Then
   ' ignore this argument
  ElseIf IsEmpty(result) Then
   ' the first time we set a possible return value
   result = args(index)
  ElseIf result < args(index) Then
   result = args(index)
  End If
 Next
 Max = result
End Function

Also, remember that to a Variant argument you can pass almost anything, including objects and arrays. If you really want to create a general-purpose routine you should account for these cases too.



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.