Re: Sending mail from an application (Pre-v2 JDK, Redhat 6.0)

1999-07-22 Thread Juergen Sonnauer
You can use the JavaMail API, designed to support mail handling, filing and processing or use one of the many free available mail classes that abstract the details of sending email into simple, convenient method calls. (i.e. http://www.coolservlets.com) Another example is the sun.net.smtp.SmtpClie

Re: SQLJ

1999-04-06 Thread Juergen Sonnauer
SQLJ from Oracle is a precompiler and a JDBC wrapper library for embedded SQL. More infos at: http://ourworld.compuserve.com/homepages/huebenthal/js0199.htm or: http://www.oracle.com/st/products/jdbc/sqlj/ Regards, Juergen Ozer Irfan wrote: > > Hello, > > Anybody know how prog

Re: IDE for Java

1999-03-22 Thread Juergen Sonnauer
As i know from the developers, the BISS-AWT framework is still in active use and a new release v1.1 with more features and a new look will be thrown out soon. So its not dead! They consider releasing it under the GNU GPL. -Ursprüngliche Nachricht- Von: Robb Shecter <[EMAIL PROTECTED]> An:

Re: An IDE for C and JAVA

1998-12-21 Thread Juergen Sonnauer
Besides the EMACS+JDE environment there is an interesting program that i find worth looking at. GRASP runs on various unix platforms and Windows. http://www.eng.auburn.edu/department/cse/research/grasp/ -- Von:Pierre Bizzotto[SMTP:[EMAIL PROTECTED]] Gesendet: Montag, 21.

Re: Socket connect timeout?

1998-08-12 Thread Juergen Sonnauer
What about Socket.setSoTimeout(int timeout)? Should throw a InterruptedIOException after specified milliseconds on read method. -- Juergen Sonnauer Per Widerlund wrote: > > Hello all.. > > Consider the following scenario: > You want to connect to a remote server that may >

Re: AWT Bug?

1998-08-08 Thread Juergen Sonnauer
terruptedException ie) { } light.setColor(Color.green); getToolkit().sync(); } } -- Juergen Sonnauer

Re: List select and jdk1.0.x

1998-07-18 Thread Juergen Sonnauer
Stefan Toth wrote: > > I have a list and I want to perform something when a > list item is selected. > The problem is that I cannot use action(Event,Object) because is get > called only when I double click on the selected item. > You can use the old-style event handling with the method "handleE

jdk1.1.6-v2test keyPressed event

1998-06-19 Thread Juergen Sonnauer
Hi, users of the jdk1.1.6 v2-test libc5! Please, can someone test the following code that listens to key-pressed events. Try the keys TAB and ENTER and look at the key char value: java.awt.event.KeyEvent[KEY_PRESSED,keyCode=9,Tab] on label0 KeyChar=65289 java.awt.event.KeyEvent[KEY_PRESSED,keyC

v2-test KeyEvent bug?

1998-06-18 Thread Juergen Sonnauer
java.awt.event.KeyEvent[KEY_PRESSED,keyCode=38,Up] on frame0 KeyCode=38 Modifiers=0 KeyChar=65362 java.awt.event.KeyEvent[KEY_PRESSED,keyCode=40,Down] on frame0 KeyCode=40 Modifiers=0 KeyChar=65364 Greetings -- Juergen Sonnauer