Search the web
Sign In
New User? Sign Up
jacoZoom
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 3603 - 3632 of 4588   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3603
User Rights for the acc im trying to connect with are "administrator" host and client are both in a dmz, so i dont think its a firewall prob.. no i didnt try...
norboweltenzerstrer
norboweltenz...
Offline Send Email
Nov 1, 2006
10:14 am
3604
Hi, the CoSetProxyBlanket function is not included in the ComLib class. Could it be added like the coInitializeSecurity ? (If so please also extend the...
snejgewleh
Offline Send Email
Nov 1, 2006
3:51 pm
3605
Hi, I'm developing na application which uses a COM object. I used to use EZ JCom, but I decided to give jacoZoom a try. I'm facing some problems with...
Danilo Tuler
dtuler
Offline Send Email
Nov 2, 2006
3:26 pm
3606
Hi, can you post the working c++ example? Have you tried my 2 suggestions? 1. try calling com.inzoom.ComLib.coInitializeEx(2); 2. try wit IDispatch wrappers...
Stefan Zschocke
szschocke
Offline Send Email
Nov 2, 2006
4:11 pm
3607
Can you post the C++ code which does what you want to have done with jacoZoom? I will add the needed functions to ComLib. Concerning coInitializeSecurity it...
Stefan Zschocke
szschocke
Offline Send Email
Nov 2, 2006
4:15 pm
3608
Please post your code then I can see if you use STAThread correctly. Thx, Stefan ... works fine,...
Stefan Zschocke
szschocke
Offline Send Email
Nov 2, 2006
4:25 pm
3609
... public class Test implements Runnable, _IWTrConnectionEvents { public static void main(String[] args) { STAThread staThread; try { staThread = new...
dtuler
Offline Send Email
Nov 2, 2006
5:06 pm
3610
Hi, in your test you block the STAThread because you stay inside your run method. Thus it won't get a chance to pump messages. Instead, you should have this...
Stefan Zschocke
szschocke
Offline Send Email
Nov 2, 2006
5:50 pm
3611
... I changed this and it's still not working... I cannot see the STA thread while debugging in Eclipse. Should I see it? Modified code below: public class...
dtuler
Offline Send Email
Nov 2, 2006
6:11 pm
3612
Hi, this is strange. In your first post you mentioned, that when running a test without the STAThread stuff it works, but you got the events back in different...
Stefan Zschocke
szschocke
Offline Send Email
Nov 2, 2006
6:25 pm
3613
... After I posted the previous message I restarted Eclipse and it "worked". The events were called. But It still seems a thread is created for each event. I...
dtuler
Offline Send Email
Nov 2, 2006
6:53 pm
3614
At least all your events should be called on the STAThread. You can check this by calling com.inzoom.winkernel.WinKernel.getCurrentThreadId(); in the...
Stefan Zschocke
szschocke
Offline Send Email
Nov 2, 2006
7:13 pm
3615
hi, i'm currently evaluating jacozoom and need to display office documents inside an eclipse (rcp) view. i tried it like this: ////////////////////////// ...
tim.ehlers
Offline Send Email
Nov 2, 2006
7:14 pm
3616
... Correct. I can see it's the same threadId. Is this thread terminated and run at each event? Eclipse may be playing with me... I posted a screeshot to the...
dtuler
Offline Send Email
Nov 2, 2006
7:57 pm
3617
this is ugly but works: - embed excel in an OleControlSite to display it in an eclipse view - patch the package org.eclipse.swt.ole.win32 (it's available from...
tim.ehlers
Offline Send Email
Nov 2, 2006
9:36 pm
3618
No, the STAThread runs continously it doesn't terminate. I don't know about these threads you mentioned. But anyway all the events enter on the same single...
Stefan Zschocke
szschocke
Offline Send Email
Nov 3, 2006
8:31 am
3619
I don't know a better way for now. But we will check why JOLEDocument doesn't work with SWT. Did you try OLEDocument? The former is for use with swing, the...
Stefan Zschocke
szschocke
Offline Send Email
Nov 3, 2006
8:32 am
3620
same result (blank view) with OLEDocument. tim...
tim.ehlers
Offline Send Email
Nov 4, 2006
7:11 pm
3621
I am actually trying to call functions on a citrix server which are provided by a com interface from citrix. As I said it works ok, when I use my own account...
snejgewleh
Offline Send Email
Nov 6, 2006
2:01 pm
3622
I will add it and post it today in the evening Stefan ... a ... server is ... to ... then ... folder "snejgewleh") ... ...
Stefan Zschocke
szschocke
Offline Send Email
Nov 7, 2006
8:35 am
3623
thank you....
snejgewleh
Offline Send Email
Nov 7, 2006
9:05 am
3624
Hi, I have uploaded an experimental update to your snejgewleh folder. Please test it and give feedback. Thanks, Stefan ... which are ... use ... function ... ...
Stefan Zschocke
szschocke
Offline Send Email
Nov 7, 2006
7:22 pm
3625
Hi, thanks. I've downloaded your file removed the old one and installed the new one. I was actually expecting the CoSetProxyBlanket to be in the izmcomjni.jar...
snejgewleh
Offline Send Email
Nov 8, 2006
8:46 am
3626
Sorry I have uploaded a wrong file. Please try again. Stefan ... folder. ... <S.Zschocke@> ... want to ... citrix ... which ... line. ... ...
Stefan Zschocke
szschocke
Offline Send Email
Nov 8, 2006
11:10 am
3627
hello.. I sit (for days now) in front of my PC monitor and .. argghh! My problem is: I have a OPC DLL (Siemens' sopcdaauto.dll) and a wrapper layer created by...
tygydym
Offline Send Email
Nov 9, 2006
7:43 am
3628
Did you try to use com.inzoom.axjni.STAThread? You have to create an instance of this class and keep it alive during your program. Then you do all calls to...
Stefan Zschocke
szschocke
Offline Send Email
Nov 9, 2006
7:58 am
3629
I already tried STAThread, too - but I did everything from within a single Runnable passed to that STAThread: adding listeners, calling appropriate methods....
tygydym
Offline Send Email
Nov 9, 2006
8:50 am
3630
Can you post a piece of code, which illustrates what you are doing? Do you have documentation or sample (in VB or C++) which shows how the asynchronous methods...
Stefan Zschocke
szschocke
Offline Send Email
Nov 9, 2006
9:05 am
3631
we are currently running your software and have run into an issue. To give some background we basically have a frameset that we are using for our application....
chrisshanson5050
chrisshanson...
Offline Send Email
Nov 9, 2006
1:51 pm
3632
Hi, can you provide a sample, with which we can reproduce this problem? Thanks, Stefan ... to ... applet ... and...
Stefan Zschocke
szschocke
Offline Send Email
Nov 9, 2006
2:10 pm
Messages 3603 - 3632 of 4588   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help