Tamer_Ahmed Posted July 11, 2004 Posted July 11, 2004 hi every one what the meaning of ParamArray and why we put it in the procedure Argument Quote
*Experts* mutant Posted July 11, 2004 *Experts* Posted July 11, 2004 ParamArray is used to accept an undefined number of arguments which will later be converted into an array. :) Quote
Bodybag Posted July 12, 2004 Posted July 12, 2004 ParamArray is used to accept an undefined number of arguments which will later be converted into an array. :) Example Sub clear(ByVal ParamArray obj() As Object) For icount As Integer = 0 To obj.GetUpperBound(0) obj(icount).text = "" Next End Sub You can now pass as many objects as you want and clear their text fields. Quote Programmers are trying to create bigger and beter idiot proof programs.The universe is trying to create bigger and beter idiots and so far the universe is winning.
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.