1
如何以編程方式保存使用OLE和C++ Builder的Excel工作簿?使用OLE以編程方式保存Excel文件
我猜它可能是這樣的:
Variant excel = Variant::CreateObject("Excel.Application");
excel.OleProcedure("Save"); // but how might you specify the file name
如何以編程方式保存使用OLE和C++ Builder的Excel工作簿?使用OLE以編程方式保存Excel文件
我猜它可能是這樣的:
Variant excel = Variant::CreateObject("Excel.Application");
excel.OleProcedure("Save"); // but how might you specify the file name
哦,只要找到了答案從here:
excel.OlePropertyGet(」Workbooks」).OlePropertyGet(」Item」,1).OleProcedure(」SaveAs」,」d:\\case1.xls」);
首先,你得到的工作簿對象,然後工作簿。然後你可以做一個SaveAs。