Re: Message Box

2015-12-28 Thread Terry Reedy
On 12/28/2015 4:43 PM, Malik Brahimi wrote: I have an event driven script What does that mean, more specifically? that prompts users as the events are triggered with a message box. Is there anyway with any GUI toolkit to create these dialogs simultaneously in the event that they coincide

Message Box

2015-12-28 Thread Malik Brahimi
Hey Guys, I have an event driven script that prompts users as the events are triggered with a message box. Is there anyway with any GUI toolkit to create these dialogs simultaneously in the event that they coincide? I have been trying everything, but I can't seem to get it right. Malik --

Re: message box in Tkinter

2010-08-17 Thread Eric Brunel
In article <61cbd1cb-bd6d-49aa-818f-d28c46098...@x18g2000pro.googlegroups.com>, Jah_Alarm wrote: > I need to display a message box at the click of a button. I od the > following: > > from Tkinter import * > > def msg1(): > messagebox.showinfo(message='

Re: message box in Tkinter

2010-08-17 Thread Matt Saxton
On Tue, 17 Aug 2010 04:02:23 -0700 (PDT) Jah_Alarm wrote: > > When I try importing messagebox from Tkinter i get an error message > that this module doesn't exist. > I believe what you want is Tkinter.Message -- Matt Saxton -- http://mail.python.org/mailman/listinfo/python-list

message box in Tkinter

2010-08-17 Thread Jah_Alarm
I need to display a message box at the click of a button. I od the following: from Tkinter import * def msg1(): messagebox.showinfo(message='Have a good day') Button(mainframe,text="About",command=msg1()).grid(column=360,row=36,sticky=W) I get the error msg 'gl

Re: Message box always appears on 2nd monitor

2009-09-14 Thread ed
ox(message='Connect Error', caption='Status', style=wx.OK | wx.ICON_EXCLAMATION| wx.CENTER, x=0, y=0) Did you try making the message box a child of whatever window called it? ie. Pass in the "parent=" attribute. ~Sean

Re: Message box always appears on 2nd monitor

2009-09-11 Thread Sean DiZazzo
.SetPosition( (0, 0) ) >          wx.MessageBox(message='Connect Error', >                       caption='Status', >                       style=wx.OK | wx.ICON_EXCLAMATION| wx.CENTER, >                       x=0, y=0) Did you try making the message box a child of whatever windo

Message box always appears on 2nd monitor

2009-09-11 Thread ed
No matter what I do, the MessageBox always appears on the 2nd monitor. I've forced all the other widgets to monitor 1. I thought that creating a class and forcing the position would help, but it hasn't. I'm using Ubuntu Jaunty, python 2.6. Any ideas what I can do to force widgets to a specific

Want to display a message box while subprocess is running

2008-09-06 Thread dudeja . rajat
Hi, I m using subprocess module and using the Popen call. While the subprocess if running, I want to display a tkMessageBox(). Does some one has a sample code for this? Thanks and regards, Rajat -- http://mail.python.org/mailman/listinfo/python-list

Re: Tkinter tkMessageBox problem - message box is displayed with an additional window

2008-08-29 Thread dudeja . rajat
myRoot.mainloop() >> else: >>sys.exit(0) >> > > It is good to post a short code sample that demonstrates the problem, > but it has to run by itself at least. > >> >> The Message Box is called before the Tix.Tk mainloop(). The problems >> are as

Re: Tkinter tkMessageBox problem - message box is displayed with an additional window

2008-08-28 Thread Guilherme Polo
continue with the remaining?"): >myRoot = Tix.Tk() >myAppGUIObject = myAppGUI(myRoot)#Class for my GUI >myRoot.mainloop() > else: >sys.exit(0) > It is good to post a short code sample that demonstrates the problem, but it has to run by itse

Tkinter tkMessageBox problem - message box is displayed with an additional window

2008-08-28 Thread dudeja . rajat
myRoot.mainloop() else: sys.exit(0) The Message Box is called before the Tix.Tk mainloop(). The problems are as under : 1. Since the message box is displayed before the mainloop() is started, the message box is displayed with another window that is blank. This should not be displayed.

Re: How to avoid a warning message box when sending email via Outlook

2006-08-31 Thread Steve M
> [Dermot Doran] > > | I'm very new to using win32com! I just want to send an email > | message via Outlook. However, I keep getting an annoying > | message box (generated by Outlook) indicating that my program > | could be a virus. Does anybody know how to get around

Re: How to avoid a warning message box when sending email via Outlook

2006-08-31 Thread Grant Edwards
On 2006-08-31, Tim Golden <[EMAIL PROTECTED]> wrote: > [Dermot Doran] > >| I'm very new to using win32com! I just want to send an email >| message via Outlook. However, I keep getting an annoying >| message box (generated by Outlook) indicating that my program

Re: How to avoid a warning message box when sending email via Outlook

2006-08-31 Thread Dermot Doran
Thanks Tim!   We have smtp bolted to the floor :-(  On 31/08/06, Tim Golden <[EMAIL PROTECTED]> wrote: [Dermot Doran]| looks like I might be back to the drawing board :-(  Thanks| for letting me know what your experiences have been. Just to elaborate slightly on that experience, if all I wantto do

Re: How to avoid a warning message box when sending email via Outlook

2006-08-31 Thread Dermot Doran
ery new to using win32com!  I just want to send an email > | message via Outlook.  However, I keep getting an annoying> | message box (generated by Outlook) indicating that my program> | could be a virus.  Does anybody know how to get around this?> > As far as I've ever been able

Re: How to avoid a warning message box when sending email via Outlook

2006-08-31 Thread Giles Brown
Tim Golden wrote: > [Dermot Doran] > > | I'm very new to using win32com! I just want to send an email > | message via Outlook. However, I keep getting an annoying > | message box (generated by Outlook) indicating that my program > | could be a virus. Does anybody know

RE: How to avoid a warning message box when sending email via Outlook

2006-08-31 Thread Tim Golden
[Dermot Doran] | looks like I might be back to the drawing board :-( Thanks | for letting me know what your experiences have been. Just to elaborate slightly on that experience, if all I want to do is to send an email (ie not look up addresses on Contacts or do any fancy Outlook-related thing)

Re: How to avoid a warning message box when sending email via Outlook

2006-08-31 Thread Dermot Doran
rning box requesting that I allow access to an external program.   Ah well.   Cheers!!   Dermot.  On 31/08/06, Tim Golden <[EMAIL PROTECTED]> wrote: [Dermot Doran]| I'm very new to using win32com!  I just want to send an email| message via Outlook.  However, I keep getting an annoyi

RE: How to avoid a warning message box when sending email via Outlook

2006-08-31 Thread Tim Golden
[Dermot Doran] | I'm very new to using win32com! I just want to send an email | message via Outlook. However, I keep getting an annoying | message box (generated by Outlook) indicating that my program | could be a virus. Does anybody know how to get around this? As far as I've

How to avoid a warning message box when sending email via Outlook

2006-08-31 Thread Dermot Doran
Hello All,   I'm very new to using win32com!  I just want to send an email message via Outlook.  However, I keep getting an annoying message box (generated by Outlook) indicating that my program could be a virus.  Does anybody know how to get around this?  Here is the sample code I'm us

Re: message box halts prgram flow

2006-03-19 Thread Bruno Desthuilliers
[EMAIL PROTECTED] a écrit : > HI > > I am creating a tkinter app. > > example > > tkMessageBox.showinfo("Window Text", "A short message") > print "blah" > > The execution of the application halts when the message box is > display

message box halts prgram flow

2006-03-17 Thread linuxnooby
HI I am creating a tkinter app. example tkMessageBox.showinfo("Window Text", "A short message") print "blah" The execution of the application halts when the message box is displayed until the user clicks OK, then "blah is printed. However I want the program

Re: Tkinter- Building a message box

2005-11-07 Thread Ron Adam
Tuvas wrote: > Do you have any info on dialogs? I've been trying to find some, without > alot of success... > Be sure and look at the examples in python24/lib/lib-tk. The Dialog.py file there does pretty much what you want. In the dialog caller example I gave, it should have been ... def do

Re: Tkinter- Building a message box

2005-11-07 Thread Tuvas
Thanks alot, that helped TONS! Just had to modify it slightly, but, well, it works great now. Thanks! -- http://mail.python.org/mailman/listinfo/python-list

Re: Tkinter- Building a message box

2005-11-07 Thread jmdeschamps
Maybe this can help: http://effbot.org/zone/tkinter-dialog-windows.htm Good luck! -- http://mail.python.org/mailman/listinfo/python-list

Re: Tkinter- Building a message box

2005-11-07 Thread Tuvas
Do you have any info on dialogs? I've been trying to find some, without alot of success... -- http://mail.python.org/mailman/listinfo/python-list

Re: Tkinter- Building a message box

2005-11-07 Thread Ron Adam
Tuvas wrote: > I've been trying to build a fairly simple message box in tkinter, that > when a button is pushed, will pop up a box, that has a line of text, an > entry widget, and a button, that when the button is pushed, will return > the value in the line of text. However, whi

Tkinter- Building a message box

2005-11-07 Thread Tuvas
I've been trying to build a fairly simple message box in tkinter, that when a button is pushed, will pop up a box, that has a line of text, an entry widget, and a button, that when the button is pushed, will return the value in the line of text. However, while I can read the value of the butt

Re: what would you like to see in a 2nd edition Nutshell? A: "Unicode aware scrollable message box in Tk"

2004-12-31 Thread Pekka Niiranen
"Continue" -button (allows script to continue execution). It could be called "Unicode aware scrollable message box in Tk" -pekka- Alex Martelli wrote: I'm considering proposing to O'Reilly a 2nd edition of "Python in a Nutshell", that I'd write in 2005, e