Hello, |
Re: Include external file into dxl Script If the 'external file' is DXL code itself (containing library functions) then use the #include statement: #include <c:\Folder\SubFolder\LibraryDXL.inc> #include "c:\Folder\SubFolder\LibraryDXL.inc"
string FileContents = readFile("c:\\Folder\\SubFolder\\LibraryDXL.inc")
|
Re: Include external file into dxl Script llandale - Wed Sep 29 10:52:43 EDT 2010 If the 'external file' is DXL code itself (containing library functions) then use the #include statement: #include <c:\Folder\SubFolder\LibraryDXL.inc> #include "c:\Folder\SubFolder\LibraryDXL.inc"
string FileContents = readFile("c:\\Folder\\SubFolder\\LibraryDXL.inc")
And yes, my external file should contain commands to a other application. ...If the 'external file' are really commands to some other application, perhaps VBA, then I've struggled through that once... Do you mean this is possible? HOW this is possible is not soo important for me now. Firstly I'd only like to know if it is really possible or not. |