Type ABFator
a As Single
b As Sinlge
End Type
Dim ABFactorArr(8) As ABFactor
‘Basically I want to declare an array of eight ABFactors which I can then access
I do this and the complier gives error user defined type not defined
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Spelling mistake? Missing c?
ABFatorwith no cABFactorwith a cYou’ve also mistyped
Singlein your Type definitionAlternatively perhaps you need to make the Type
Public, in case you are defining it in one module and using it in another?(Please copy and paste the code into your questions in future, as you’ve spelt ABFactor three different ways in your question!)