Thanks for the tip. I made the change. Unfortunately I now wind up
with the exception
"java.lang.ClassCastException: com.inzoom.comjni.jcw.IDispatchJCW"
when I do the cast
"gdsEvent = (IGoogleDesktopSearchEvent) gdsEventDisp;"
---snip---
try {
Object gdsEventDisp =
dsClass.createEvent(kComponentGuid,Google.Desktop.IM");
gdsEvent = (IGoogleDesktopSearchEvent) gdsEventDisp;
}
catch (Exception e)
{
component.unregisterComponent(kComponentGuid);
System.exit(1);
}
---snip---
Anyone?
Thanks in advance (again)
Adam