JVM Languages
jacob.txt
Associated article: Mixing ActiveX with Java
Tags: JVM Languages
Published source code accompanying the article by Al Williams in which he uses JACOB--a library for running Java code under Windows to connect with ActiveX objects--for robotic control. Also see JACOB.ZIP.
Mixing ActiveX with Java
by Al Williams
Example 1:
ActiveXComponent xl =
new ActiveXComponent("Excel.Application");
System.out.println("version="+xl.getProperty("Version"));
xl.setProperty("Visible", new Variant(true));
Example 2:
servo.invoke("SetPosition&...


