XLL access from XLM Add-In in XL08?

J

Jack Marr

I'm trying to bring forward an XLL interface that was implemented in
XL04 using Application.RegisterXLL, REGISTER.ID and Application.RUN
under VBA. I understand REGISTER.ID is not supported in XL08 and
XLM's RUN looks nothing like VBA's Application.RUN. Is XLM EXEC my
only alternative? So far I haven't been able to get it to do anything
but am thinking that the performance would be unacceptable, and that's
assuming it's possible to obtain a return value from it. Are there
any other alternatives in XLM (or elsewhere) I'm missing?
 
B

Bob Greenblatt

I'm trying to bring forward an XLL interface that was implemented in
XL04 using Application.RegisterXLL, REGISTER.ID and Application.RUN
under VBA. I understand REGISTER.ID is not supported in XL08 and
XLM's RUN looks nothing like VBA's Application.RUN. Is XLM EXEC my
only alternative? So far I haven't been able to get it to do anything
but am thinking that the performance would be unacceptable, and that's
assuming it's possible to obtain a return value from it. Are there
any other alternatives in XLM (or elsewhere) I'm missing?
The XLM REGISTER command was designed using OS 9. I have no idea if the same
calls into the Operating system are indeed the same, or supported in OS X.If
it works at all, you'll have to use Exec. Right now, there are NO
alternatives to XLM.
 
Top