Question

Let's say I created a csv file and saved it somewhere. How would I programmaticaly (using C++ if possible or something i could call from C++) open Calc with that csv file exported to it?

Was it helpful?

Solution

Try system:

 system("/path/to/calc /path/to/your/csv");

http://www.cplusplus.com/reference/cstdlib/system/

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top