Attach the file and add code i use…
Thanks
JASanguineti
----------------------------------------------------------------------
CCAsposeApp DocWork = new CCAsposeApp();
DocWork.FunSetField(Filename,
new string[] { "Titulo", "Ref_Elaborado_por" },
new object[] { "titulo", "jasanguineti" });
----------------------------------------------------------------------
using Aspose.Words;
public class CCAsposeApp
{
public string FunSetField(string arFilename, string[] arFields, object[] arObjects)
{
string ls_ret = "";
try
{
Document doc = new Document(arFilename);
doc.MailMerge.Execute(arFields, arObjects);
doc.Save(arFilename);
}
catch (Exception e)
{ ls_ret = e.Message; }
return ls_ret;
}
}