Sunday, November 2, 2014

Sun Yat Sen Memorial, Taipei

This is part of the fun Taiwan travel series. View the full itinerary here.

Sun Yat-Sen memorial park is another famous attraction in Taipei.
Most tourists like to go there to witness the hourly changing of guards.


It is very conveniently located within the Chung-Shan vicinity and reachable by MRT.
If you have time to space, you could enter the memorial hall and view some of the artifacts on display, as well as visit the library.

Convert PowerPoint slides to Images in C#

One of the challenges I have come across is to have a component that could batch convert PPT and PPTX files into images.

I know there are really good components out there like Aspose, but IT budget is always a constraint.
As we already had Office 2010 installed on our machine, I came up with a quick console application t perform the function.

Obviously, you need Office 2010 installed on the machine where you need to run the tool. I compiled the project for the .NET 2.0 Framework.

Just add some references to your Visual Studio 2010 solution like below:
Microsoft.Office.Interop.PowerPoint (from .NET, v14.0.0.0)
Microsoft.Office.Core (from COM, v14.0.0.0)
Others like System.Configuration (as I am using app.config)

After creating a basic C# Console application, add the references mentioned above.

Related Posts Plugin for WordPress, Blogger...