Skip to main content
deleted 29 characters in body
Source Link
cgraham720
  • 147
  • 1
  • 1
  • 11

got the issue resolved using the getFiles method

string[] filePaths = Directory.GetFiles(@"c:\Test\"); string[] documentsToMerge = filePaths; string outputFileName = String.Format(@"C:\Test\Merge\Combined.docx", Guid.NewGuid()); MsWord.Merge(documentsToMerge, outputFileName, true); 

thank you for the help.

got the issue resolved using the getFiles method

string[] filePaths = Directory.GetFiles(@"c:\Test\"); string[] documentsToMerge = filePaths; string outputFileName = String.Format(@"C:\Test\Merge\Combined.docx", Guid.NewGuid()); MsWord.Merge(documentsToMerge, outputFileName, true); 

thank you for the help.

got the issue resolved using the getFiles method

string[] filePaths = Directory.GetFiles(@"c:\Test\"); string[] documentsToMerge = filePaths; string outputFileName = (@"C:\Test\Merge\Combined.docx"); MsWord.Merge(documentsToMerge, outputFileName, true); 

thank you for the help.

indents
Source Link
Dmitrii Bychenko
  • 187.5k
  • 20
  • 178
  • 231

got the issue resolved using the getFilesgetFiles method

 string[] filePaths = Directory.GetFiles(@"c:\Test\");  string[] documentsToMerge = filePaths;  string outputFileName = String.Format(@"C:\Test\Merge\Combined.docx", Guid.NewGuid());  MsWord.Merge(documentsToMerge, outputFileName, true); 

thank you for the help.

got the issue resolved using the getFiles method

 string[] filePaths = Directory.GetFiles(@"c:\Test\");  string[] documentsToMerge = filePaths;  string outputFileName = String.Format(@"C:\Test\Merge\Combined.docx", Guid.NewGuid());  MsWord.Merge(documentsToMerge, outputFileName, true); 

thank you for the help.

got the issue resolved using the getFiles method

string[] filePaths = Directory.GetFiles(@"c:\Test\"); string[] documentsToMerge = filePaths; string outputFileName = String.Format(@"C:\Test\Merge\Combined.docx", Guid.NewGuid()); MsWord.Merge(documentsToMerge, outputFileName, true); 

thank you for the help.

Source Link
cgraham720
  • 147
  • 1
  • 1
  • 11

got the issue resolved using the getFiles method

 string[] filePaths = Directory.GetFiles(@"c:\Test\"); string[] documentsToMerge = filePaths; string outputFileName = String.Format(@"C:\Test\Merge\Combined.docx", Guid.NewGuid()); MsWord.Merge(documentsToMerge, outputFileName, true); 

thank you for the help.