Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hai,
I want to export a sheet object automatically into a QVD while reload Schedule happens in Server. How it's possible.
We have option to export the sheet object to QVD using Buttons but are there is any possibility to export by script level without using buttons.
Regards,
Vijay
Hi Vijay,
a way could be to write a short macro like
SUB ExportQvd
set tb = ActiveDocument.GetSheetObject("CH01")
tb.ServerSideExportEx "C:\test.xml" , ";" , 3 '0=HTML, 1=Text, 2=Bitmap, 3=XML, 4=QVD, 5=BIFF
END SUB
(Example from the API Guide)
and activate it at script run time.
Good luck!
Rainer
call that object ID into the script level and try to store into QVD