Re: Lock Windows Screen GUI using python

2014-06-04 Thread Chris Angelico
On Wed, Jun 4, 2014 at 1:55 PM, Jaydeep Patil wrote: > For plotting one graph, I need to use four to five excel files. Currently I > am reading excel files one by one and copy data of excel files to another > single master excel file. This master excel file consists of all data from > all input

Re: Lock Windows Screen GUI using python

2014-06-03 Thread Ian Kelly
On Jun 3, 2014 11:46 PM, "Jaydeep Patil" wrote: > Below is the sample function which doing copy paste in my case. > I am copying data directly by column, not reading each & every value. > Data is too big in heavy. The approach I suggested also operates on ranges, not individual cells. -- https:/

Re: Lock Windows Screen GUI using python

2014-06-03 Thread Jaydeep Patil
On Wednesday, 4 June 2014 10:28:28 UTC+5:30, Ian wrote: > On Tue, Jun 3, 2014 at 9:55 PM, Jaydeep Patil wrote: > > > Hi lan, > > > > > > For plotting one graph, I need to use four to five excel files. Currently I > > am reading excel files one by one and copy data of excel files to another >

Re: Lock Windows Screen GUI using python

2014-06-03 Thread Ian Kelly
On Tue, Jun 3, 2014 at 9:55 PM, Jaydeep Patil wrote: > Hi lan, > > For plotting one graph, I need to use four to five excel files. Currently I > am reading excel files one by one and copy data of excel files to another > single master excel file. This master excel file consists of all data from

Re: Lock Windows Screen GUI using python

2014-06-03 Thread Jaydeep Patil
On Tuesday, 3 June 2014 20:57:32 UTC+5:30, Ian wrote: > On Jun 3, 2014 1:56 AM, "Jaydeep Patil" wrote: > > > I have another query. > > > > > > We can now block user inputs. But in my automation three is copy & paste > > work going on continuously in Excel before plotting the graphs. > > > >

Re: Lock Windows Screen GUI using python

2014-06-03 Thread Ian Kelly
On Jun 3, 2014 1:56 AM, "Jaydeep Patil" wrote: > I have another query. > > We can now block user inputs. But in my automation three is copy & paste work going on continuously in Excel before plotting the graphs. > > During copy paste of excel data, if user by mistake doing some copy & paste opera

Re: Lock Windows Screen GUI using python

2014-06-03 Thread Chris Angelico
On Tue, Jun 3, 2014 at 5:53 PM, Jaydeep Patil wrote: > > During copy paste of excel data, if user by mistake doing some copy & paste > operation outside excel(for e.g. doing copy paste in outlook mails, firefox > browser etc), it may be cause for the another error. > > How i can control this? S

Re: Lock Windows Screen GUI using python

2014-06-03 Thread Mark Lawrence
On 03/06/2014 08:53, Jaydeep Patil wrote: Would you please use the mailing list https://mail.python.org/mailman/listinfo/python-list or read and action this https://wiki.python.org/moin/GoogleGroupsPython to prevent us seeing double line spacing and single line paragraphs, thanks. -- My fell

Re: Lock Windows Screen GUI using python

2014-06-03 Thread Jaydeep Patil
On Tuesday, 3 June 2014 12:39:38 UTC+5:30, Ian wrote: > On Tue, Jun 3, 2014 at 12:40 AM, Jaydeep Patil > wrote: > > > Hi Lan, > > > > > > Currently I am doing some automation in python excel. It read the data & > > plots number of graphs. It took more than 20 minutes. So while running my >

Re: Lock Windows Screen GUI using python

2014-06-03 Thread Ian Kelly
On Tue, Jun 3, 2014 at 12:40 AM, Jaydeep Patil wrote: > Hi Lan, > > Currently I am doing some automation in python excel. It read the data & > plots number of graphs. It took more than 20 minutes. So while running my > python program if user clicks on excel, error came. > > So just i want to loc

Re: Lock Windows Screen GUI using python

2014-06-02 Thread Jaydeep Patil
On Tuesday, 3 June 2014 10:39:31 UTC+5:30, Ian wrote: > On Mon, Jun 2, 2014 at 10:28 PM, Jaydeep Patil > wrote: > > > Dear all, > > > Can we Lock Windows Screen GUI till program runs & unlock screen GUI when > > program finishes? > > > > If you mean can you programmatically bring up the Wi

Re: Lock Windows Screen GUI using python

2014-06-02 Thread Ian Kelly
On Mon, Jun 2, 2014 at 10:28 PM, Jaydeep Patil wrote: > Dear all, > Can we Lock Windows Screen GUI till program runs & unlock screen GUI when > program finishes? If you mean can you programmatically bring up the Windows lock screen, then you can do this: import ctypes ctypes.windll.user32.LockW

Lock Windows Screen GUI using python

2014-06-02 Thread Jaydeep Patil
Dear all, Can we Lock Windows Screen GUI till program runs & unlock screen GUI when program finishes? Regards Jaydeep Paril -- https://mail.python.org/mailman/listinfo/python-list