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