Could you please confirm if 'Public Type', as defined below, is possible with Access 2003. Symilar example found in a book for Access 2007.
The error message inline 7 is:
User-defined type not defined
Code:
Public Type TypeName Type as String Temp as Single Protect As Boolean End Type Public Function FnName() Dim Var1 as TypeName Dim Var2 as TypeName ........ End Function
User-defined type not defined
Comment