Not a Member Yet,
Click here to Register

ID: 190
Viewed: 3623
Added: Apr 29, 2002
Version:
Snippet uploaded by: snippet
Written By: unknown
Demo: Sorry, no demo



User Rated at: 0 Stars
Rate This:

Thank you for your vote. Please wait...

It appears you already voted for this snippet

It appears your vote value was empty

Returning An Array Of Fixed Length Strings From A String Many of the instruments we write VB interface's for send ASCII data in a string such as "-0.0001+0.0032-0.0012-0.0021". This little routine will nicely chop up the string into fixed length chunks, and put them into an array for further processing. It should work in any version of VB.

Highlight all by clicking in box
<!---Declaration--->
none

Highlight All
<!---Code--->
Public Sub Fixed_Len(Work As String, Length As Integer, Arr() As String)
Dim iElement As Integer
Dim iCounter As Integer
Dim iPointer As Integer
iElement = 1
iCounter = 1
For iPointer = 1 To UBound(Arr())
Arr(iElement) = Mid(Work, iCounter, Length)
iCounter = iCounter + Length
iElement = iElement + 1
Next iPointer
End Sub;


No Comments to show

Please completely fill out the form below if you want to review this snippet. All reviews are subject to validation.


Replying to a Comment...


Adding your comment. Please wait...

Thanks for adding your comment!. After further review it will be added.

There was a problem adding your comment. Please try again.

Please complete all the fields in the form before sending.

© 2002 - 2024 snippetlibrary.com All Rights Reserved. Conditions
Do NOT follow this link or you will be banned from the site!