Re: Subtracting two dates in python

2014-07-31 Thread MRAB
On 2014-07-31 17:08, eshwar...@gmail.com wrote: I would like to subtract two dates i.e I have entered a date into a textbox which is of type String like below type(waitForObject(":VWAP Calculator_LCDateTextField"), "07/24/14") I am capturing that date like below Current = (waitForObject(":VWA

Re: Subtracting two dates in python

2014-07-31 Thread John Gordon
In eshwar...@gmail.com writes: > I would like to subtract two dates > i.e I have entered a date into a textbox which is of type String like below > type(waitForObject(":VWAP Calculator_LCDateTextField"), "07/24/14") > I am capturing that date like below > Current = (waitForObject(":VWAP Calc

Subtracting two dates in python

2014-07-31 Thread eshwar080
I would like to subtract two dates i.e I have entered a date into a textbox which is of type String like below type(waitForObject(":VWAP Calculator_LCDateTextField"), "07/24/14") I am capturing that date like below Current = (waitForObject(":VWAP Calculator_LCDateTextField").text) so, now I wa