Vamsi Chada

Greenhorn
+ Follow
since Aug 12, 2004
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Vamsi Chada

I have a simple screen with 2 buttons and on clicking submit button a new window is opened asking for confirmation.
I do this with pretty ease with swingworker rendering a runnable when its a dispatch thread else i use Invokelater on the Eventqueue.

Is there something wrong with this approach?
15 years ago
I had to sum up the percentage calls per customer which was taking atleast 20 places of decimal.
Some weird requirement but the big decimal has a performance issue but I had a work around solution of multiplying my double value with 10000000 and then use the round method.

Thanks for all your answers and finally solved
15 years ago
The SerialBlob is a very good option on this
Thanks for the help. But I still have a question here

I want to know when I insert a large decimal value , I mean with 20 places of precision into a double variable, How much precision is stored in the double variable.
15 years ago
var OLECMDID = 7;
/* OLECMDID values:
* 6 - print * 7 - print preview * 1 - open window * 4 - Save As
*/
var PROMPT = 1; // 2 DONTPROMPTUSER
var WebBrowser = '<OBJECT ID="WebBrowser1" WIDTH=0 HEIGHT=0 CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>';
document.body.insertAdjacentHTML('beforeEnd', WebBrowser);
WebBrowser1.ExecWB(OLECMDID, PROMPT);
WebBrowser1.outerHTML = "";
//window.PrintArea.innerHTML = "<div class='formlabel'>Please Click the X on the window to close!</div>"
//window.close();
Can U please specify the jar which was conflicting. THanks in advance It would be of major help
I want to display a print preview page for an existing jsp when clicked on a button.
How is it possible Please provide me a solution.
Is it required to create a seperate jsp using a seperate css or there is anyother solution
[ September 15, 2006: Message edited by: Bear Bibeault ]
Iam taking a String from a file which is actuallya number with 18 decimals long and the Decimal format is rounding that in scientific notation to 8 decimals whereas i want the number in decimal notation . Plz help me over this
19 years ago
Iam taking a String from a file which is actually 15 decimals long and the Decmal format is rounding that in scientific notation whereas i want the number in decimal notation . Plz help me over this
19 years ago
Hai
Plz help me
I want to round a decimal number with 18 places of decimal to 8 places of decimal.

Thank you for this
regards
19 years ago