CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: Array

  1. #1
    Join Date
    Feb 2001
    Posts
    33

    Array

    How can I check how many elements in the array?
    Does it use lower bound to find out ?
    I forget the syntax



  2. #2
    Join Date
    Aug 1999
    Location
    Bangalore, INDIA
    Posts
    70

    Re: Array

    Ubound(array)


  3. #3
    Join Date
    Mar 2001
    Posts
    90

    Re: Array


    U can use LBound(ArrayName) to get the Lower Bound and
    UBound(ArrayName) to get the Upper Bound.





Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured