Aspose.Words for .NET 4.2.1 Released

This is a maintenance release. Here is what’s been fixed:

  • 1539 Load image from same URL only once when importing HTML.
  • 1537 Document looks not correct when exported to DOC.
  • 1534 Support PageBorderArt in import and export WordML.
  • 1533 ‘Unknown line style’ exception when converting from DOC to WordML.
  • 1527 Add support for loading images from different URIs.
  • 1526 Document throws “Unable to read beyond the end of the stream” on saving.
  • 1525 Document throws “Cannot get field part because at
Continue Reading
Posted in Aspose.Words Product Family |

Aspose.Chart 3.3.8 Released

Dear Customers,

We have released Aspose.Chart 3.3.8.

Fixed: Labels of axis X are located incorrectly when ChartArea.AxisX.AxisLabels.IsDataPointNameVisible = true and Series.CustomAttributes.IsBarSideBySide = true.
Continue Reading

Posted in Aspose.Total Product Family |

How to Generate Real Microsoft Word DOC Documents from Crystal Reports

Crystal Reports have long been able to produce reports in RTF format (giving them the .DOC extension by default which always created confusion).

Using Aspose.Words you can quickly and easily convert from RTF to real DOC. Either on the server or on the client.

The code to convert any RTF to DOC is as simple as this:

Aspose.Words.Document doc = new Document("C:\\MyFolder\\MyFile.rtf");
doc.Save("C:\\MyFolder\\MyFile.doc");

Conversions in any direction between Microsoft Word formats (DOC, RTF and WordML) in Aspose.Words are high-fidelity (very … Continue Reading

Posted in Aspose.Words Product Family |

Aspose.Network 3.3.1 hotfix released!

Dear Customers,

We’ve release Aspose.Network 3.3.1 hotfix!

In this hotfix release, Outlook drag drop samples have been updated.… Continue Reading

Posted in Aspose.Email Product Family |

Adding glossary in Aspose.Pdf for .Net

Although glossary is not supported directly in Aspose.Pdf for .Net, it is possible to create glossary using the #$REFPAGE symbol. Here is an example:

[c#]

   //create Pdf and set license
   Pdf pdf = new Pdf();
   Aspose.Pdf.License lic = new Aspose.Pdf.License();
   lic.SetLicense(@”D:\CSharp\Test\License\Aspose.Custom.lic.xml”);
   pdf.IsTruetypeFontMapCached = true;
   pdf.TruetypeFontMapPath = @”d:\test”;

   //create new section
   Section sec1 = pdf.Sections.Add();

   //create tables and add data
   Table table1 = new Table();
   table1.ColumnWidths = “200 100”;
   sec1.Paragraphs.Add(table1);
   
   Row row1 = table1.Rows.Add();
   Cell cell1 = row1.Cells.Add();
   Heading heading1 … Continue Reading

Posted in Aspose.PDF Product Family |

Aspose.Workflow HotFix 1.2.12.0 released

Dear Customers,

   We have released Aspose.Workflow hotfix 1.2.12.0, it contains:

1) Invalid files are packaged with demos, now it fixed.

Regards,

Stone

Continue Reading
Posted in Stone Well |

Aspose.Workflow Hotfix 1.2.11.0 released

Dear Customers,

   We have released Aspose.Workflow 1.2.11.0, it contains

Feature Added:

  • Add a ParentTask property in the ITask interface,when a task is created in a block activity, using ParentTask can access the parent block activity task.
  • Add a new AssignTask api in IProcessInstance to assign task without accept task
  • Add a return value IPackage for UpdatePackage API to return the updated package instance.
  • Add a set of  ReevaluateAssignments API to IEngine interface, use these APIs can reevaluate the assignments when
Continue Reading
Posted in Stone Well |

Tutorial on Aspose.Network latest Outlook dragdrop feature

Outlook dragdrop feature is included in the latest Aspose.Network release, which enables
developers to easily create UI elements that respond to Outlook drag drop events.

The following sample shows how to create a panel, on which user can drag a message from
Outlook and drop it, and the program save that message(s) to .msg file(s).

Step 1. Create a windows form application

Step 2. Add reference to Aspose.Network

Browse for Aspose.Network.dll and Aspose.Windows.Forms.dll, and click ok

Step 3. Create your ui elements, in … Continue Reading

Posted in Aspose.Email Product Family |

Aspose.Slides for .NET 2.6.10.0 released!

Hot fix contains:
  • Memory optimization on loading images and rendering of slides.
Continue Reading
Posted in Aspose.Slides Product Family |

Aspose.Network 3.3.0.0 Released

We have released Aspose.Network 3.3.0.0!

What’s new?

  • This is a major release for Aspose.Network, with Microsoft Exchange Server supporting (WEBDAV).
    • Supports fetch e-mail messages on an exchange store.
    • Supports delete e-mail messages
    • Supports send e-mail messages

    [C#]

    string mailboxUri = “http://gz.aspose.com/exchange/andrew”; 
    string username = “andrew”;
    string password = “12345678”;
    string domain = “aspose”;

    NetworkCredential credential = new NetworkCredential(username, password, domain);

   //create an exchangeclient
   ExchangeClient client = new ExchangeClient(mailboxUri, credential);
   try
   {
    //query mailbox
    ExchangeMailboxInfo mailbox = client.GetMailboxInfo();
    //list
Continue Reading

Posted in Aspose.Email Product Family |