Hi,
Is it possible to open multiple presentations at once (in separate threads)?
When I run this code:
new Thread(new Runnable()
{
@Override
public void run()
{
System.out.println("opening 1...");
final Presentation p = new Presentation("/Users/marc/aspose_test/doc1.ppt");
System.out.println("opened 1, has slides: " + p.getSlides().size());
}
}).start();
new Thread(new Runnable()
{
@Override
public void run()
{
System.out.println("opening 2...");
final Presentation p = new Presentation("/Users/marc/aspose_test/doc2.ppt");
System.out.println("opened 2, has slides: " + p.getSlides().size());
}
}).start();
I only get this:
opening 1…
opening 2…
Thanks,
Marc