Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
m-wise
Partner - Contributor III
Partner - Contributor III

Export to server.

Hello,

Is it possible to export a csv file to the server where QV is running.

I'm using the IE client. If I use:

set doc = ActiveDocument.getsheetobject("TB01")
doc.export "d:\data\export\test.csv",";"

It wants to export the file to the client.

The QV doc is used on the web so i can't use unc path names.

thx



1 Solution

Accepted Solutions
Not applicable

Try ServerSideExportEx 🙂

<pre>SET objSheetObject = ActiveDocument.GetSheetObject("CH01")objSheetObject.ServerSideExportEx "myExport.csv" , ";", 1' Where the number on the end means:' 0 = HTML' 1 = Text' 2 = Bitmap' 3 = XML' 4 = QVD' 5 = BIFF



View solution in original post

2 Replies
Not applicable

Try ServerSideExportEx 🙂

<pre>SET objSheetObject = ActiveDocument.GetSheetObject("CH01")objSheetObject.ServerSideExportEx "myExport.csv" , ";", 1' Where the number on the end means:' 0 = HTML' 1 = Text' 2 = Bitmap' 3 = XML' 4 = QVD' 5 = BIFF



m-wise
Partner - Contributor III
Partner - Contributor III
Author

So that was easy.

Thanks