Package datasoul.util

Examples of datasoul.util.OpenofficeHelper


                @Override
                public void run(){
                    PresentationConverterProgress pcp = new PresentationConverterProgress();
                    try{
                        setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
                        OpenofficeHelper helper = new OpenofficeHelper();
                        pcp.setLocationRelativeTo(ImageListEditorForm.this);
                        pcp.registerHelper(helper);
                        pcp.setVisible(true);
                        helper.convertImages(fc.getSelectedFile(), edititem);
                        helper.dispose();
                    }catch(Exception e){
                        ImageListEditorForm.this.setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
                        JOptionPane.showMessageDialog(ImageListEditorForm.this, java.util.ResourceBundle.getBundle("datasoul/internationalize").getString("ERROR CONVERTING FILE")+": "+e.getMessage());
                    }finally{
                        pcp.dispose();
View Full Code Here

TOP

Related Classes of datasoul.util.OpenofficeHelper

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.