Hi all. If you have been following the list you may know about the problems people were having with modal dialogs in Jacl and Tcl Blend. I created a workaround...
Moses DeJong
dejong@...
Mar 1, 1999 10:44 pm
116
I have been thinking of making the studio bean into a standalone package that does not get included with Tcl Blend and Jacl. Is anyone actually using the bean...
Moses DeJong
dejong@...
Mar 1, 1999 10:50 pm
117
I think we should remove it. I looked at the Tcl Bean for the Tcl Java Tutorial, and it seems sort of cool, but unless it has someone who is willing to...
Christopher Hylands
cxh@...
Mar 1, 1999 10:54 pm
118
I agree, get rid of it. Don't even bother extracting it and releasing it separately. The Tcl Bean was more of a political project then good wholesome ...
Bryan Surles
surles@...
Mar 2, 1999 1:26 am
119
It would be great if java_detachcall made it into the distribution, and it would be even better if some documentation were included, even if you're not really...
Philip Chu
philipchu@...
Mar 2, 1999 9:01 am
120
Hi all. If you would like to check out the new TclJava 1.2 info and download page you can go to this url. http://www.cs.umn.edu/~dejong/tcl/tcljava The...
Moses DeJong
dejong@...
Mar 10, 1999 2:24 am
121
Ahhh!! I have started getting the following error. I've tried search the web for causes but haven't found anything to indicate why it would "suddenly" stop...
Tom McKay
mckay@...
Mar 10, 1999 6:31 pm
122
Could you provide some more info about the JDK version you are using, the platform your are running on, and so on. I have seen problems like this when...
Moses DeJong
dejong@...
Mar 10, 1999 10:09 pm
123
Great news. If anyone wants to run Jacl on a JVM other than the one provided by Sun you now have a choice. The Kaffe JVM is an open source project that seeks...
Moses DeJong
dejong@...
Mar 11, 1999 2:14 am
124
Well after some more web searching, I started to investigate the nesting of throw/catch/finally and return statements. Ouch! Very painful. I can't pin down...
Thomas McKay
mckay@...
Mar 12, 1999 6:35 pm
125
Using jikes is a good way to check to see if it is a sun javac bug. If you are downloading jikes be sure that your get the most recent 0.47 version from...
Moses DeJong
dejong@...
Mar 12, 1999 9:28 pm
126
All, Here is a real problem I have encountered using TclBlend. I wanted to call a Java class that required a long as input (It was a license control class...
schenck
schenck@...
Mar 12, 1999 9:57 pm
127
When a java::* method returns a java variable, it only works when I do a "set" of that variable into a local tcl variable. If I just use the variable returned...
Sachin Thatte
sachin.thatte@...
Mar 12, 1999 10:00 pm
128
This is one of the implementation details that you just have to learn. The only reason you might want to do this is to quickly type in commands without using...
Moses DeJong
dejong@...
Mar 12, 1999 10:08 pm
129
Thanks for the insight. With my short experience with JACL, I feel the need to have a mode where java variables will be automatically "locked". No doubt, this...
Sachin Thatte
sachin.thatte@...
Mar 12, 1999 10:47 pm
130
On Thu, 11 Mar 1999, schenck wrote: Humm, this does look like a nasty problem. The reason for this is that Tcl does not have a "long" type. In Tcl your objects...
Moses DeJong
dejong@...
Mar 12, 1999 10:56 pm
131
Bruce, could you post a simple Tk Java sample and the java code that you generate using the Jacl script. I am trying to get a handle on what you are describing...
Chris Avis
c.avis@...
Feb 18, 1999 3:18 am
132
Professor Lee pointed out that it is difficult to access the fields of a parent class from within Tcl Blend I'm a little tired, but it seems like it should be...
Christopher Hylands
cxh@...
Mar 16, 1999 5:55 am
133
hi, Here is a stange problem found with JACL 1.1.1: When Shell is started (java -classpath tcljava.jar;jacl.jar tcl.lang.Shell), the characters typed after...
philippe boyer
philoux@...
Mar 16, 1999 8:56 am
134
I'm wondering what I must do in order to create an array of java objects under the Jacl interpreter. I tried ... set x [ java::new String[50] ] thinking that I...
Mark Whittemore
markw@...
Mar 16, 1999 2:33 pm
135
Line Continuation characters ... I've had some difficulties using line continuations in scripts that will be executed both by "pasting" into a jacl session...
Mark Whittemore
markw@...
Mar 16, 1999 3:00 pm
136
Good morning I have a very basic question to ask you. With tclblend i can use the scripting capabilities of tcl and object calls in java. But is it possible...
Pedro Henriques
phenriqu@...
Mar 16, 1999 3:04 pm
137
On Tue, 16 Mar 1999, philippe boyer wrote: This is a known problem with the NT version of JDK 1.2. This is a JDK bug and there is nothing Jacl can do to fix...
Moses DeJong
dejong@...
Mar 17, 1999 12:30 am
138
Hello mark. Could you provide more information about the platform you are running on and what version of the JDK and Jacl you are using? I have seen problems ...
Moses DeJong
dejong@...
Mar 17, 1999 12:35 am
139
... I think that you are asking "is it possible to implement a Java interface with Tcl code". In the case of AWT interfaces it is possible. In fact, it is very...
Moses DeJong
dejong@...
Mar 17, 1999 12:40 am
140
Well, nobody seems to hate the idea of keeping long conversion in a String instead of turning it into an integer so I am going to include this change in the...
Moses DeJong
dejong@...
Mar 17, 1999 7:32 am
141
... here is the complete file Shell.java I have modified (attached). ... I have no workaround for the folowing program, in Shell.java the jdk bug is avoid at...
philippe boyer
philoux@...
Mar 17, 1999 11:52 am
142
Sounds good to me. Thanks for sounding the idea out. Dan Schenck ... From: Moses DeJong [mailto:dejong@...] Sent: Wednesday, March 17, 1999 1:32 AM To:...
schenck
schenck@...
Mar 17, 1999 2:26 pm
143
... I will check out your changes and see if I can get them to work. I do not understand exactly how your changes would fix the problem but I will look into...
Moses DeJong
dejong@...
Mar 17, 1999 9:38 pm
144
It looks like Tcl Blend is returning a new value everytime I do a get() on a LinkedList. This is confusing because Java returns the same value that I passed...