Lisa Zapson

Ranch Hand
+ Follow
since Nov 22, 2004
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Lisa Zapson

Your information was very helpful, thanks.

By any chance do you know how I can toggle java 1.5 and 1.6 for web start?

Thanks, Lisa
15 years ago
I am running applications that use jdk 1.5 and 1.6. How can I toggle between the two without having to add/remove programs?

Thanks, Lisa
15 years ago
Overriding the getNextValue in the spinner date model works but it always increments the day, even if the focus is on the year. I would like the spinner to increment the day when the focus is on the day.

I would like to set the initial focus to the day (dd) instead of the year.

Thanks for your help, I really appreciate it. Lisa
16 years ago
I'm using a JSpinner with a SpinnerDateModel and a DateEditor. The DateEditor is setup with the following format.

new JSpinner.DateEditor(startDateS, "yyyy-MM-dd");

When I click on the spinner the year gets incremented. I would like to set the day (dd) to get incremented. Can you give me any suggestions to set the day to be incremented, without double clicking on the day before clicking on the spinner?

Thanks for all your help, Lisa
16 years ago
Nice. Thank you very much.
16 years ago
If you edit the cell in a JTable and then press a button outside the JTable how can you tell the Jtable to update the model with the text that was edited in the cell? The data in the model does not change unless you press enter or tab or click on another cell. But how can I update the model if the use clicks outside the JTable?

Thanks for any suggestions, Lisa
16 years ago
Why would you use a private constructor?

Thanks, Lisa
16 years ago
I want to make my java (windows) application a singleton. Meaning that only one instance of the application can run (in windows) at a time.

Any thoughts would be appreciated.

Thanks, Lisa
16 years ago
Thanks for all your help. I have a much better understanding of where I would and would not use getInstance.

Thanks, Lisa
17 years ago
Why would I use MyClass.getInstance() instead of instanciating a class with New MyClass()?

Thanks, Lisa
17 years ago
I'm looking for some FoxTrot Threading documentation or reference.

Any suggestions would be appreciated. Thanks, Lisa
17 years ago
Can anyone recommend an excellent Spring reference. I'm new to the Spring Framework.

Thanks, Lisa
I appreciate you subtlety, I couldn�t agree more! I will rethink what I�m trying to do.

Thanks, Lisa
17 years ago
Hi Karan,

I was also able to get a string of 0.00007. I now want to convert that string back into a double. I tried Double.valueOf(), Double.parseDouble() and New Double(). For each of these I get 7.0E-5.

Thanks, Lisa
17 years ago
I'm trying to format a double in scientific notation to a double not in scientific notation. I tried using DecimalFormat to format the scientific notation double to a string. But, when I try to convert it back to a double I get the scientific notation back.

7.399999999999985E-5 To 0.00007 (When I create a new Double I get 7.0E-5 back).

Any suggestions would be greatly appreciated.

Thanks, Lisa
17 years ago