|
-
Jun 17th, 2008, 03:06 AM
#1
Thread Starter
Junior Member
Array Control
Hi,
I have an array that contains 5 elements:
i.e.
a(0) = "A"
a(1) = "B"
a(2) = "C"
a(3) = "D"
a(4) = "E"
What I want to be able to do is remove the first element then add information to the end.
e.g.
a(0) = "B"
a(1) = "C"
a(2) = "D"
a(3) = "E"
a(4) = "F" ; <- New
a(0) = "C"
a(1) = "D"
a(2) = "E"
a(3) = "F"
a(4) = "G" ; <- New
etc.....
Is there an easy way to remove the first element in an array?
Thanks for any help.
pG
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|