Thomas Darimont
Erfahrenes Mitglied
Hallo!
Excel in Java (mit SWT):
Demnächst mal ein Beispiel zur OLE Automation...
Gruß Tom
Excel in Java (mit SWT):
Code:
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.ole.win32.OleClientSite;
import org.eclipse.swt.ole.win32.OleFrame;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
public class Main {
public static void main(String[] args) {
Display display = new Display();
Shell shell = new Shell(display);
shell.setText("Excel Demo");
shell.setSize(640, 480);
shell.setLayout(new FillLayout());
OleFrame frm = new OleFrame(shell, SWT.NONE);
OleClientSite site = new OleClientSite(frm, SWT.NONE, "Excel.Chart");
shell.open();
while (!shell.isDisposed())
if (!display.readAndDispatch())
display.sleep();
site.deactivateInPlaceClient();
site.dispose();
}
}
Demnächst mal ein Beispiel zur OLE Automation...
Gruß Tom