Hi all,
I encountered an error when trying to remove an element from my array which is of a user defined structure type
The following is the declaration of my structure type and array:-
Public Type PRICELIST
ItemNo As String
P1Price As Double
P2Price As Double
P3Price As Double
End Type
Public PriceArr() As PRICELIST
When I tried to remove 1 of the element using the following codes :-
PriceArr.Remove counter
It will prompt me an error message "Invalid qualifier" and immediately highlight the PriceArr.
Is there anyway of removing the element at the particular position?
Please do advice and thanks in advance.
Rgds,
Panadoll
I encountered an error when trying to remove an element from my array which is of a user defined structure type
The following is the declaration of my structure type and array:-
Public Type PRICELIST
ItemNo As String
P1Price As Double
P2Price As Double
P3Price As Double
End Type
Public PriceArr() As PRICELIST
When I tried to remove 1 of the element using the following codes :-
PriceArr.Remove counter
It will prompt me an error message "Invalid qualifier" and immediately highlight the PriceArr.
Is there anyway of removing the element at the particular position?
Please do advice and thanks in advance.
Rgds,
Panadoll