It’s a VBA syntax issue. Add the Call keyword in front, or remove the parentheses. Either of the following should work:
Call universes.Export("Universe", "Company", my_unv.Name, 0)
universes.Export "Universe", "Company", my_unv.Name, 0
A discussion on the applicable VBA syntax, and options can be found here.
Dwayne Hoffpauir (BOB member since 2002-09-19)