×
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS

Log In

Come Join Us!

Are you an
Engineering professional?
Join Eng-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!
  • Students Click Here

*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Jobs

Array length at runtime

Array length at runtime

Array length at runtime

(OP)
How can I set the length of Array in VB6 during runtime?
If there are any Gimicks while using array that a beginer should know, please do tell me that too

RE: Array length at runtime

You can use the ReDim and ReDim Preserve commands to modify the length of an array. There are samples in the VB Help file on this.

DimensionalSolutions@Core.com
While I welcome e-mail messages, please post all thread activity in these forums for the benefit of all members.

RE: Array length at runtime

(OP)
i have array say Member(10)
and i would like to store the Length, E and I of every member seperately...like Member(1).Length , is it somehow possible in VB.
Thanks for the ReDim Tip.

RE: Array length at runtime

Something like this?

Option Explicit

Public Type MY_TYPE
  ILength As Double
  ELength As Double
End Type

Public Sub Test()
  Dim Members() As MY_TYPE
  Dim intCnt As Integer
  Dim PI As Double
  PI = Atn(1) * 4
  For intCnt = 0 To 10
    ReDim Preserve Members(intCnt)
    Members(intCnt).ILength = PI * 7 - intCnt
    Members(intCnt).ELength = PI * 4 + intCnt
  Next intCnt
  For intCnt = 0 To 10
    Debug.Print Members(intCnt).ELength
    Debug.Print Members(intCnt).ILength
  Next intCnt
End Sub

RE: Array length at runtime

(OP)
thankU Rj ,Uve soled my prob. :)

RE: Array length at runtime

Dim Array(0,1) 'global
I = 5.36    '2x4 #2 Doug-Fir Wood
E = 1.6E+06
call AddNewSection( I, E )
end

Private Sub AddNewSection (I as Single, E as Single)
Static nSections
nSections = nSections + 1
ReDim Preserve Array (nSections, 1)
Array( nSections, 0)= I
Array( nSections, 1) = E
end sub

RE: Array length at runtime

Does anyone know how to get the length of an array at runtime in VB script?

RE: Array length at runtime

Use the Ubound function
ArrayLength  = Ubound(ArrayName)

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Eng-Tips Forums free from inappropriate posts.
The Eng-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Eng-Tips forums is a member-only feature.

Click Here to join Eng-Tips and talk with other members!


Resources