Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I want to export 2 objects to 1 QVD.
Can someone help me ?
Sub ServerExportset obj = ActiveDocument.GetSheetObject("CH183")set obj2 = ActiveDocument.GetSheetObject("CH174")File = activedocument.Evaluate("'C:\Users\vanweje\Desktop\Klanten\Intern\data\test1' & timestamp(now(), 'YYYYMMDDhhmm') & '.qvd'")obj.ExportEx File, 5obj2.ExportEx File, 4msgbox("Exported Table")End Sub