Monthly Archives: March 2007

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 |

Kite Mounted Camera – Take 1

A few weeks ago I mentioned about getting a camera to mount on my kite. Now its here and today was the first try out.

The consumer technology is amazing (especially if you don’t look at stuff for a while). It is only about 90x55x20mm, 7.2mp, 3x zoom, weights 160 grams, 640×480 video at 30fps, 4Gb memory card gives around 1 hour of video time. When inside the waterproof case, total weight 280 grams.

Kite: BEST Waroo 07, 9m.

Mounting … Continue Reading

Posted in Roman Korchagin |

Aspose Celebrates Five Years of Business

March 14, 2007 – Sydney, Australia – Aspose Ltd started trading in 2002. In the last five years the company has come a long way. What started as a Sydney-based team that developed components for .NET developers, has grown to a company with teams in Australia, US, New Zealand, Ukraine, Pakistan and China that deliver high-quality class libraries and components for .NET and Java. Not satisfied with two platforms, Aspose are planning to launch their first rendering extension for SQL … Continue Reading

Posted in News Release | Tagged ,

Day Out Surfing

Perfect day for learning surfing. Smallish waves, no problems paddling out. Great location Muriwai Beach. Highly encouraging mate. We are kiwi blokes.

Next one is me filming through a few nice waves.

 … Continue Reading

Posted in Roman Korchagin |

Remove Bookmarks in Word Document using C#

What to do if you need to remove bookmark and its entire content from the document altogether. The only method existing in API for that is setting Bookmark.Text to an empty string. But that will work only for the simplest of bookmarks. For bookmark spanning multiple nodes with mixed content, like paragraph, tables, it will fail with a dreaded “Start and end node should have the same grand parent” exception. It will also fail when bookmark spans several sections and … Continue Reading

Posted in Aspose.Words Product Family |

Workaround for form field text loose formatting when updated from code.

There is a known issue of loss of formatting when setting form field text input value using Result property or SetTextInputValue method. For example, you have formatted your text form field as bold and it comes up as normal text when updated. For a workaround you can use the following wrapper method instead of using SetTextInputValue method directly:

Example

[C#]

private void SetFormFieldText(FormField formField, object value)
{
        if ((value == null) || (value is string) && ((string)value == “”))
        {
                
Continue Reading
Posted in Aspose.Words Product Family |

Aspose.Words for .NET 4.2.0 Released

This releases introduces a great new feature – WordprocessingML import in Aspose.Words.

Now, the following formats are well supported in Aspose.Words for .NET:

  • Open and save DOC – Microsoft Word 97 – 2007 Document
  • Open and save RTF – Rich Text Format
  • Open and save XML – WordprocessingML
  • Open and save HTML/XHTML
  • Save TXT
  • Save PDF (when used with Aspose.Pdf)

New Features

  • Import WordprocessingML documents.
  • Updated demos to include WordprocessingML.
  • Updated Aspose.Words Documentation.
  • Made it possible to specify a password
Continue Reading
Posted in Aspose.Words Product Family |