J
Jesper F
I'm getting a "Compile error - user-defined type not defined" with this :
In declarations:
Private Type SelDim
iWidth As Integer
iHeight As Integer
End Type
In the module:
Function SelectionDimension() As SelDim
SelectionDimension.iWidth = 3
SelectionDimension.iHeight = 4
End Function
What's wrong? Thanks.
Jesper
In declarations:
Private Type SelDim
iWidth As Integer
iHeight As Integer
End Type
In the module:
Function SelectionDimension() As SelDim
SelectionDimension.iWidth = 3
SelectionDimension.iHeight = 4
End Function
What's wrong? Thanks.
Jesper