Message 1 of 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Scenario:
I have a C Sharp WIndows App that collects a list of TXT files.
I then launch AutoCAD and I want to call another DLL command, feeding that list of TXT files to process as a delimeted string.
Calling the command via SendCommand, no problem. But as an example, when i build:
string txtFiles = "Txt01" + "|" + "Txt02" + "|" + "Txt03"; // + etc
Then in AutoCAD,
SendCommand("_MYDLLCOMMAND txtFiles "), the command will lauch but instead of seeing the string list, it just sees the txtFiles as nil.
I know i could write out a file to the temp folder and then have the DLL command look there, but was wanting something more direct.
Any ideas?
Solved! Go to Solution.