Re: problem with money datatype based calculations in python

2009-05-02 Thread anusha k
Do calculations in postgresql and then call that calculated value from the python.So no need to calculate in python at all Njoy the share of Freedom, Anusha Kadambala On Sat, May 2, 2009 at 1:15 PM, Krishnakant wrote: > hello all, > I am using postgresql as a database server for my db applicati

threading issue

2009-05-17 Thread anusha k
hi, i am using pygtk,glade in the front end and postgresql,python-twisted (xmlrpc) as the back end.My issue is i am trying to add the progress bar in my application but when the progress bar comes up it is blocking the backend process.So i started using threading in my application.But when i added

covert number into string

2010-01-21 Thread anusha k
Hi, Can anyone tell me how to convert number to words For example: If number = then it should give me *Nine thousand nine hundred ninetynine* Is there any build-in function or something that can do this for me Thank you in advance Anusha Kadambala -- http://mail.python.org/mailman/listinfo/py

Re: Python and glade program - without errors but didn't display anything

2009-09-01 Thread anusha k
hi, You forgot to show the window.So in init method of py file and add self.window = self.wTree.get_widget("window_calculator") self.window.show() Njoy the share of Freedom, Anusha Kadambala On Tue, Sep 1, 2009 at 2:04 PM, Raji Seetharaman wrote: > Hi all, > i tried to develop a calculator us