HI there
I am a newbie here ,and i am new to excel.I have encountered the same problem.I want to split the excel files into two parts.And i have googled a code to do that:
/// <summary>
/// Split an Excel document into two sub-documents.
/// </summary>
/// <param name="originalDocument"></param>
/// <param name="pageIdx"></param>
public void splitPDFDocument(String sourceFilePath,List<String>destnsPath, int pageIdx)
{
ExcelDocument.SplitDocument(sourceFilePath, pageIdx, destnsPath);
}
But it display nothing.What's wrong with my code?Is there any excel processing program which supports to do that directly?Thanks for any suggestion.