J
John Dann
I'd like to use the same different variables of the same structure in
multiple classes etc. But even though I declare a structure as eg:
Public Structure ExampleStructure
Dim A as short
Dim B as short
etc
End Structure
in one class and works OK within that class, I'm getting a 'Type
'ExampleStructure' is not defined' error when I go to declare a
variable of type ExampleStructure in any class/form etc file other
than the one in which the structure is initially defined.
What am I doing wrong please?
John Dann
multiple classes etc. But even though I declare a structure as eg:
Public Structure ExampleStructure
Dim A as short
Dim B as short
etc
End Structure
in one class and works OK within that class, I'm getting a 'Type
'ExampleStructure' is not defined' error when I go to declare a
variable of type ExampleStructure in any class/form etc file other
than the one in which the structure is initially defined.
What am I doing wrong please?
John Dann