program which extracts a jar file(urgent)

2002-01-04 Thread Bharat Dighe
Hi Folks, I need a program which can extract a jar file. I can not use jar.exe. Thanks in advanced. - Bharat _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com

Sound api

2001-12-13 Thread Bharat Dighe
it fails...-*/ { line = (Clip) AudioSystem.getLine(info); line.open(ais); } Please let me know if I am missing something here. Thanks, Bharat. _ Do You Yahoo!? Get your free @yahoo.com address

Is JOptionPane internationalized ?

2001-09-27 Thread Bharat
are still displayed in english. I am using jre1.3.Are there any registered bug for this? I saw some bugs but they all are closed. Thanks - bharat

Re: [Advanced-java] Re: Is JOptionPane internationalized ?

2001-09-27 Thread Bharat
Yes basic_jp.properties is missing from rt.jar. Is there any i18n version of jre available ? Or I can get basic_jp.properties from somewhere ? Thanks - bharat Bharat - Check to see if the rt.jar in your Solaris JRE contains a Japanese language file named basic_jp.properties

Re: [Advanced-java] Re: Is JOptionPane internationalized ?

2001-09-27 Thread Bharat
Yes basic_jp.properties is missing from rt.jar. Is there any i18n version of jre available ? Or I can get basic_jp.properties from somewhere ? Thanks - bharat Bharat - Check to see if the rt.jar in your Solaris JRE contains a Japanese language file named basic_jp.properties

Re: How to restric japanese characters

2001-09-26 Thread Bharat
is non english. public static boolean isNonEnglishChar(char c){int i = (int) c;System.out.println("char " +c +" =" + i);if( (i32) || ( i126))return true;return false;} Comments ??? - bharat - Original Message - From: Bharat To: [EMAIL PROTECTED

How to restric japanese characters

2001-09-25 Thread Bharat
Hi folks, I want my JTextField to accept only english characters and it should reject japanese(or any other language) characters. Is there anyapi to do it?or a sample code which will help ? Thanks, - bharat

Implementation of Http Web Server

2001-09-17 Thread Bharat
Hi, Any ready examples or references ? to develop http web server... --Bharat.

Need to find out the input language.

2001-06-20 Thread Bharat Dighe
Hi, I can run my application in different languages, like Japanese on an English system, etc. Now I want to find out the language in which the user will type text, i.e. the language of keyboard. Is it possible with JRE 1.3 ? --Bharat

Jtable custom editor

2001-03-18 Thread Bharat Dighe
. everything works fine. But when just single click on the cell and start typing, my custom text filed doesn't come in picture and every character is accepted. any clues ? Thanks - Bharat _ Do You Yahoo!? Get your free @yahoo.com address

Re: How to set font in JTree

2001-03-16 Thread Bharat Dighe
I think you need to write custom renederer for your JTree. In the renderer we can set the font of the text based on the value of tree node. - Bharat Hi, generally I would use UIManager.put("Tree.font", myFont) to set a font for my JTree. But which name is to be set i

Re: Code for a JTable with custom look

2001-03-04 Thread Bharat Dighe
You need to write custom renderer of this JTable. Following code might help. public class MultiColorCellRenderer extends JLabel implements TableCellRenderer { public Component getTableCellRendererComponent(JTable table, Object value,

Re: Generating EXE code for JAVA

2001-02-28 Thread Bharat Dighe
I think to avoid installation of jre, setting classpath etc. - Original Message - From: "Greg Munt" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, February 28, 2001 4:29 PM Subject: Re: Generating EXE code for JAVA Why would you want to? -Original Message- From:

Re: changing the cursor to an hourglass

2001-02-27 Thread Bharat Dighe
frame.setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR)); - Original Message - From: "David King" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, February 28, 2001 9:02 AM Subject: changing the cursor to an hourglass Hello. Is there a way to change the cursor to

Re: Garbage Collection

2001-02-27 Thread Bharat Dighe
To force garbage collector call Runtime.getRunTime().gc() - Original Message - From: "Pravin Shingade" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, February 28, 2001 10:40 AM Subject: Garbage Collection Hi all, Can anybody tell me how to force a garbage collector or any

Re: JTable and scrolling

2001-02-22 Thread Bharat Dighe
It will help: add these lines after you add records in the model. Rectangle r = m_table.getCellRect(m_table.getModel().getRowCount()-1, 0,true); m_table.scrollRectToVisible(r); - Bharat - Original Message - From: "ravi kanth" [EMAIL PROTECTED] To: [EMAIL PROTE

JSeparator

2001-02-21 Thread Bharat Dighe
Hi Folks, JSeparator by default is etched. Is there any method to remove this etching and have a plain JSeparator. Thanks - Bharat

Some questions regarding JTable

2001-02-13 Thread Bharat Dighe
is clicked. Is there any any method to get row also ? Thanks - Bharat _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com ___ Advanced-swing mailing list [EMAIL PROTECTED

Some questions regarding JTable

2001-02-13 Thread Bharat Dighe
is clicked. Is there any any method to get row also ? Thanks - Bharat _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com ___ Swing mailing list [EMAIL PROTECTED] http

ComponentListener to a JPanel

2001-01-22 Thread Bharat Dighe
Hi Folks, I have added ComponentListener to a JPanel. I am receiving events for componentResize but not receiving any event for componentShown. I want to take some action when the panel becomes visible. Any alternate method to do this ? Thanks for any ideas. Bharat