Pop deletes one specific element from an array.
Pop deletes one specific element from an array.
Rate Pop deletes one specific element from an array.
(1(1 Vote))
Dim tmparray() As String
Dim counter As Integer
ReDim tmparray(0) As String
For counter = 0 To UBound(iArr)
If (counter <> iPos) And (Trim(key_tab(counter)) <> "") Then
Call push(iArr(counter), tmparray)
End If
Next
ReDim iArr(UBound(tmparray)) As String
For counter = 0 To UBound(tmparray)
iArr(counter) = tmparray(counter)
Next
End Sub
Pop deletes one specific element from an array. Comments
No comments yet — be the first to post one!
Post a Comment