Print to CSV
-
@scottalanmiller said in Print to CSV:
@CCWTech said in Print to CSV:
From what I can tell the program we are using has a built in integration for Excel but you have to have Excel and not something like Libre Office.
Likely using the Excel automation API that is unique.
I spaced this one.
I was thinking the application could be lame and trying to call the excel.exe executable directly. That could be solved with a link to LibreOffice executable - assuming the LibreOffice executable accepts the same arguments.
-
@Dashrender said in Print to CSV:
@scottalanmiller said in Print to CSV:
@CCWTech said in Print to CSV:
From what I can tell the program we are using has a built in integration for Excel but you have to have Excel and not something like Libre Office.
Likely using the Excel automation API that is unique.
I spaced this one.
I was thinking the application could be lame and trying to call the excel.exe executable directly. That could be solved with a link to LibreOffice executable - assuming the LibreOffice executable accepts the same arguments.
In theory, yes. But I think it is using an API to make it output to CSV. Otherwise, we'd just expect it to open the file and sit there.
-
@Pete-S said in Print to CSV:
@scottalanmiller said in Print to CSV:
@CCWTech said in Print to CSV:
From what I can tell the program we are using has a built in integration for Excel but you have to have Excel and not something like Libre Office.
Likely using the Excel automation API that is unique.
Not impossible but not likely. Especially not if it's software that runs on a server of some kind.
"Integration" in order of complexity (I probably forgot some):
- Files that Excel can open (csv files, html tables etc)
Yeah, but keep in mind it's opening Excel in order to make the CSV, so it's not CSV that it is passing to Excel. And it isn't just opening Excel, but operating it, too. So it needs something to automate the tasks.
-
@scottalanmiller said in Print to CSV:
@Dashrender said in Print to CSV:
@scottalanmiller said in Print to CSV:
@CCWTech said in Print to CSV:
From what I can tell the program we are using has a built in integration for Excel but you have to have Excel and not something like Libre Office.
Likely using the Excel automation API that is unique.
I spaced this one.
I was thinking the application could be lame and trying to call the excel.exe executable directly. That could be solved with a link to LibreOffice executable - assuming the LibreOffice executable accepts the same arguments.
In theory, yes. But I think it is using an API to make it output to CSV. Otherwise, we'd just expect it to open the file and sit there.
I assume then that using the API is easier than the application simply outputing to CSV on it's own? i.e. the app would need it's own API for that, and they didn't want to write one, so they decided to just glom onto Excel?
-
@scottalanmiller said in Print to CSV:
@Pete-S said in Print to CSV:
@scottalanmiller said in Print to CSV:
@CCWTech said in Print to CSV:
From what I can tell the program we are using has a built in integration for Excel but you have to have Excel and not something like Libre Office.
Likely using the Excel automation API that is unique.
Not impossible but not likely. Especially not if it's software that runs on a server of some kind.
"Integration" in order of complexity (I probably forgot some):
- Files that Excel can open (csv files, html tables etc)
Yeah, but keep in mind it's opening Excel in order to make the CSV, so it's not CSV that it is passing to Excel. And it isn't just opening Excel, but operating it, too. So it needs something to automate the tasks.
What did I miss that leads you to these conclusions - clearly I missed something.
-
@Dashrender said in Print to CSV:
@scottalanmiller said in Print to CSV:
@Pete-S said in Print to CSV:
@scottalanmiller said in Print to CSV:
@CCWTech said in Print to CSV:
From what I can tell the program we are using has a built in integration for Excel but you have to have Excel and not something like Libre Office.
Likely using the Excel automation API that is unique.
Not impossible but not likely. Especially not if it's software that runs on a server of some kind.
"Integration" in order of complexity (I probably forgot some):
- Files that Excel can open (csv files, html tables etc)
Yeah, but keep in mind it's opening Excel in order to make the CSV, so it's not CSV that it is passing to Excel. And it isn't just opening Excel, but operating it, too. So it needs something to automate the tasks.
What did I miss that leads you to these conclusions - clearly I missed something.
Because I know the app that he's trying to use.
-
@Dashrender said in Print to CSV:
@scottalanmiller said in Print to CSV:
@Dashrender said in Print to CSV:
@scottalanmiller said in Print to CSV:
@CCWTech said in Print to CSV:
From what I can tell the program we are using has a built in integration for Excel but you have to have Excel and not something like Libre Office.
Likely using the Excel automation API that is unique.
I spaced this one.
I was thinking the application could be lame and trying to call the excel.exe executable directly. That could be solved with a link to LibreOffice executable - assuming the LibreOffice executable accepts the same arguments.
In theory, yes. But I think it is using an API to make it output to CSV. Otherwise, we'd just expect it to open the file and sit there.
I assume then that using the API is easier than the application simply outputing to CSV on it's own?
I doubt it.
-
@scottalanmiller said in Print to CSV:
@Dashrender said in Print to CSV:
@scottalanmiller said in Print to CSV:
@Dashrender said in Print to CSV:
@scottalanmiller said in Print to CSV:
@CCWTech said in Print to CSV:
From what I can tell the program we are using has a built in integration for Excel but you have to have Excel and not something like Libre Office.
Likely using the Excel automation API that is unique.
I spaced this one.
I was thinking the application could be lame and trying to call the excel.exe executable directly. That could be solved with a link to LibreOffice executable - assuming the LibreOffice executable accepts the same arguments.
In theory, yes. But I think it is using an API to make it output to CSV. Otherwise, we'd just expect it to open the file and sit there.
I assume then that using the API is easier than the application simply outputing to CSV on it's own?
I doubt it.
It's harder, but it all depends. I've done software projects with MS Office automation (aka com objects). It's not the smartest way to do things but sometimes the only way (very seldom for Excel though).
-
@scottalanmiller said in Print to CSV:
@Pete-S said in Print to CSV:
@scottalanmiller said in Print to CSV:
@CCWTech said in Print to CSV:
From what I can tell the program we are using has a built in integration for Excel but you have to have Excel and not something like Libre Office.
Likely using the Excel automation API that is unique.
Not impossible but not likely. Especially not if it's software that runs on a server of some kind.
"Integration" in order of complexity (I probably forgot some):
- Files that Excel can open (csv files, html tables etc)
Yeah, but keep in mind it's opening Excel in order to make the CSV, so it's not CSV that it is passing to Excel. And it isn't just opening Excel, but operating it, too. So it needs something to automate the tasks.
Yeah, it's the excel com objects. But normally you would run those hidden without actually invoking the gui.
-
@scottalanmiller said in Print to CSV:
@Dashrender said in Print to CSV:
@scottalanmiller said in Print to CSV:
@Dashrender said in Print to CSV:
@scottalanmiller said in Print to CSV:
@CCWTech said in Print to CSV:
From what I can tell the program we are using has a built in integration for Excel but you have to have Excel and not something like Libre Office.
Likely using the Excel automation API that is unique.
I spaced this one.
I was thinking the application could be lame and trying to call the excel.exe executable directly. That could be solved with a link to LibreOffice executable - assuming the LibreOffice executable accepts the same arguments.
In theory, yes. But I think it is using an API to make it output to CSV. Otherwise, we'd just expect it to open the file and sit there.
I assume then that using the API is easier than the application simply outputing to CSV on it's own?
I doubt it.
sooooo... they did it why? bad programmers?
-
@Dashrender said in Print to CSV:
@scottalanmiller said in Print to CSV:
@Dashrender said in Print to CSV:
@scottalanmiller said in Print to CSV:
@Dashrender said in Print to CSV:
@scottalanmiller said in Print to CSV:
@CCWTech said in Print to CSV:
From what I can tell the program we are using has a built in integration for Excel but you have to have Excel and not something like Libre Office.
Likely using the Excel automation API that is unique.
I spaced this one.
I was thinking the application could be lame and trying to call the excel.exe executable directly. That could be solved with a link to LibreOffice executable - assuming the LibreOffice executable accepts the same arguments.
In theory, yes. But I think it is using an API to make it output to CSV. Otherwise, we'd just expect it to open the file and sit there.
I assume then that using the API is easier than the application simply outputing to CSV on it's own?
I doubt it.
sooooo... they did it why? bad programmers?
Always, or they just hate the users. But the latter would be crazy.