|
It seems that rtd server will not work if the rtd server implement in another project? i have project one to register excel function for call the xlcall.rtd() method, and the project two implement an rtd server,but the excel function calculate finish still no entry the rtd server lifetime.(and i also try use the method ExcelIntegration.RegisterRtdWrapper() to register my rtd server) |
Answered by
govert
Feb 20, 2023
Replies: 1 comment 1 reply
|
You need to add the other assembly into the main .dna file as another ExternalLibrary: It would also make more sense for the other project to only use the "ExcelDna.Integration" package, and not the "ExcelDna.AddIn" package too, as it won't be an add-in itself. |
1 reply
Answer selected by
SKYC829
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You need to add the other assembly into the main .dna file as another ExternalLibrary:
It would also make more sense for the other project to only use the "ExcelDna.Integration" package, and not the "ExcelDna.AddIn" package too, as it won't be an add-in itself.