Import and export DLL files
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Import and export DLL files
Is it possible to import data from .dll file type and then exporting the results to .dll. ?
We are planing to have a library that multiple programs can use simultaneously and DLL is our best choice.
Solved! Go to Solution.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
DLL are not data files. DLL are dynamically loaded library (hence DLL) that are executable code files. The code within the DLL files can be used to read and write data to files of various types. I would recommend binary data files for numbers. The code in DLL's are loaded dynamically when Windows needs it.
DLL's can be purposly written for PTC Prime. See help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
DLL are not data files. DLL are dynamically loaded library (hence DLL) that are executable code files. The code within the DLL files can be used to read and write data to files of various types. I would recommend binary data files for numbers. The code in DLL's are loaded dynamically when Windows needs it.
DLL's can be purposly written for PTC Prime. See help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thank you that is helpful
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Is that strictly true? I understood that there were non-executable DLLs that could store data; an example might be a resource DLL.
https://learn.microsoft.com/en-us/windows/win32/dlls/using-shared-memory-in-a-dynamic-link-library
https://en.wikipedia.org/wiki/Dynamic-link_library
I haven't done any Windows programming for a long time, so I'm all too ready to admit my understanding is incorrect.
Stuart
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thank you Stuart,
I will check these resource.
