puneet.darji
Right off the assembly line
E.g.
public Enum season
winter=0
summer=1
end enum
public Enum month
jan=0
feb=1
end enum
There are two different enums i want to pass in one common function like.
pubic function fillenum(i send above enum as parameter)
end function
At the time of calling function :-
button_click
fillenum(season)
fillenum(month)
end sub
is this posible.
Thnx in adavance
public Enum season
winter=0
summer=1
end enum
public Enum month
jan=0
feb=1
end enum
There are two different enums i want to pass in one common function like.
pubic function fillenum(i send above enum as parameter)
end function
At the time of calling function :-
button_click
fillenum(season)
fillenum(month)
end sub
is this posible.
Thnx in adavance
Last edited: