Okay, removed the array parts to give the following:
Private mtypCurrencyList As typCurrency
Friend Property Get CurrencyList() As typCurrency
CurrencyList = mtypCurrencyList
End Property
Friend Property Let CurrencyList(typList As typCurrency)
mtypCurrencyList = typList
End Property...
Hi, I just joined in the hope that somebody here could help me.
I have a user defined type called typCurrency defined (in a module) as:
Public Type typCurrency
Code As String
Description As String
Index As Integer
End Type
In a separate class I have the following code:
Private...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.