Package jp.ne.so_net.ga2.no_ji.jcom

Examples of jp.ne.so_net.ga2.no_ji.jcom.IDispatch.method()


      item.put("Categories", categories);
      if (durationIs0) {
        item.put("Duration", 0);
      }
      item.put("Sensitivity", sensitivity);
      item.method("Save", null);
      item.release();
      outlook.release();
    } catch (Exception e) {
      e.printStackTrace();
      ErrorHandler.handle(mLocalizer
View Full Code Here


     */
    public IDispatch getDataSet(String name) {
        IDispatch toReturn = null;
        try {
            IDispatch dataSetInfos = (IDispatch) app.get("DataSetInfos", new Object[]{name});
            toReturn = (IDispatch) dataSetInfos.method("CreateDataSet", null);
        } catch (JComException ex) {
            ErrorHandling.showError("DataSet " + name + " nicht vorhanden.");
        }
        return toReturn;
    }
View Full Code Here

     * @param name Indice-Name
     */
    public void sort(IDispatch dataset, String name) {
        try {
            IDispatch tosort = (IDispatch) dataset.get("Indices", new Object[]{name});
            tosort.method("Select", null);
        } catch (JComException ex) {
            ErrorHandling.showError("Indices " + name + " nicht vorhanden.");
        }
    }

View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.