I received this error even though I select the "Arena 16.0 Type Library".
Asked
Active
Viewed 133 times
0
-
1The code you show is written for early binding. So you need to [add the reference](https://learn.microsoft.com/en-us/office/vba/language/how-to/check-or-add-an-object-library-reference) to the Arena Library. – Storax Jan 19 '20 at 18:07
1 Answers
0
Try this:
Dim oModel as Object
Set oModel = CreateObject("Arena.Application")

father.of.automation
- 13
- 7
-
1The OP woul better add the reference as the next error will probably occur at the line `Dim m as Arena.Model`. – Storax Jan 19 '20 at 18:05
-