How can I achieve the word application arise on top of all applications? I already use the setVisible() and setActive() methods, but they didn't work as...
Hi, We are running JSP application that uses JacoZoom to communicate with COM business objects. Intermittently it fails with ACCESS_VIOLATION, function...
We've got an application that creates a new JOLEDocument("Word.Document") and works with that object. Provided that we build the wrappers correctly, what...
Hi, the best thing to do in your case is explicitly releasing all native resources: Call the release-method on COM objects as well as on Variant and SafeArray...
You should be able to use any embeddable object. You don't even need wrappers for it unless you want to access the object programmatically - you only need the...
Hello, I have further reduced sample code to bare minimum. Here is code (I could post full updated sample if you wish): On initialization, in servlet...
Hi, I will download Websphere today and hopefully test your case tomorrow. In the meanwhile, please change your code to add calls to varNames.release() and...
Hello, It doesn't seem to me that release() can be invoked on saNames, since it is SafeArray and SafeArray does not have release() method in class declaration,...
Hi, Thanks for the information. Can I get some examples on how to Run Excel on the Client side with Applet. Excel is installed on Client side DLL is installed...
... Please try to use "Excel.Sheet". ... HRESULT 0x80049401 signals problems with start document server. This HRESULT is published in the izmcomjniax.dll. HTH ...
Hi, I prototyped a sql update in Access that works. It involves a join from a index table (instRla table, has foreign key) to the master (act table, primary...
Hi, the most likely problem is, that your program exits shortly after the update statement. This causes the Jet DLLs to be unloaded not giving them time to...
Hello, have you been able to reproduce issue? What is the status of this issue? Any update would be very welcome. Vytautas Staraitis ... Websphere, ... ...
Hi, Hermann is working on this. He already could reproduce this and is searching for the cause in order to fix it. We hope to post a solution soon. Stefan...
Hi, we found the problem to be the following: Your code is: SafeArray sa = v.getSafeArray(); string[] s = sa.getStringArray(); One would assume that the GC...
Hello, I must admit it is really tricky one son of, ummmh, bug :). And, as our experience shows, Sun's JVM garbage collector has similar issue too although it...
Hi, I can get it to open in IE if I have the /F value(in the .fdf file) set correctly but it will open up in a separate Adobe Reader window, not in the IE...
When I use the JActiveX inside a JFrame, everything works well. However, when I try to place it inside a JInternalFrame, it still seems to want to attach to...
The main problem I'm having is that my ActiveX control is always placed at (0,0) of the Ancestor's window. This works fine when displayed in a JFrame. However,...
We do it! And mostly works OK. However for the heavy weight problem, you need a special InternalFrame that fixes this. The main layout is to use the...
I may be a little dense... but what I do not understand is how JActiveX "tells" the ActiveX control where to display itself. Does the ActiveX control need to...
Hallo David ... Some backgrounds. Per definition ActiveX is to be placed inside a ActiveX-Container. This container is implemented as a part of jacoZoom JNI ...
Perhaps the problem is that my JInternalFrame in inside a JDesktopPane that is inside a JScrollPane. Is it possible the the JActiveX container is not looking...