Ole in Servoy

I would like to use Ole like functions within Servoy to integrate with MS Office.

For instance there is a nice Java Outlook Connector form Moyosoft.
See source example :

package com.moyosoft.samples.outlook;

import com.moyosoft.connector.com.*;
import com.moyosoft.connector.exception.*;
import com.moyosoft.connector.ms.outlook.*;
import com.moyosoft.connector.ms.outlook.folder.*;
import com.moyosoft.connector.ms.outlook.item.*;
import com.moyosoft.connector.ms.outlook.mail.*;

public class SendMail
{
   public static void main(String[] args)
   {
      try
      {
         // Outlook application
         Outlook outlookApplication = new Outlook();

         // Get the Outbox folder
         OutlookFolder outbox = outlookApplication.getDefaultFolder(FolderType.OUTBOX);

         // Create a new mail in the outbox folder
         OutlookMail mail = (OutlookMail) outbox.createItem(ItemType.MAIL);

         // Set the subject, destination and contents of the mail
         mail.setSubject("Hello world !");
         mail.setTo("your_email@test.com");
         mail.setBody("This is a test message.");

         // Send the mail
         mail.send();

         // Dispose the library
         outlookApplication.dispose();
      }
      catch(ComponentObjectModelException ex)
      {
         System.out.println("COM error has occured: ");
         ex.printStackTrace();
      }
      catch(LibraryNotFoundException ex)
      {
         // If this error occurs, verify the file 'moyocore.dll' is present
         // in java.library.path
         System.out.println("The Java Outlook Library has not been found.");
         ex.printStackTrace();
      }
   }
} 

My question is ( since i am not a java specialist ) :

Can this be integrated in a Servoy method ??? 

Or will Servoy offer Ole functionallity in future releases ??

Regards,

Hans

Hi Hans,

IT2BE’s office plugin is totaly based on this java-lib!
Look at his website: http://www.it2be.com

Thanks Harjo,

I was already planning to test some of Marcel’s plugins
and Beans.

If you are doing everything that Marcel has done, you will spend a lot more money than you would be buying his plugin.

I am not planning to “everything that Marcel has done”.

I am going to use as much available plug-ins and beans as possible.

By the way :D i think do not even want to know

“everything that Marcel has done” 8)

Thanks for the reply’s

Hans