i use the reportbuilder to create some reports. Is it possible to automatic store the report as Pdf (with a macro) and open the pdf file?
I have a macro to open a file:
http://en.libreofficeforum.org/node/6842
- Code: Select all Expand viewCollapse view
' sFile = "path\filename"
sub OpenDocument(sFile)
oSer = createUNOService("com.sun.star.system.SystemShellExecute")
oSer.execute(sFile,,0)
end sub
so i need a code to store a report as pdf in a path. can you help me or do you know any similar code?