Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. rayner1

    Property Let/Get and User Defined Types

    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...
  2. rayner1

    Property Let/Get and User Defined Types

    Oops, slight error in there: Private mtypCurrencyList(1000) As Variant should say: Private mtypCurrencyList(1000) As typCurrency
  3. rayner1

    Property Let/Get and User Defined Types

    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...

Part and Inventory Search

Back
Top