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
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
--
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='
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
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
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
.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
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
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
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
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
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.
> [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
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
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
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
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
[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)
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
[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
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
[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
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
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
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
Maybe this can help:
http://effbot.org/zone/tkinter-dialog-windows.htm
Good luck!
--
http://mail.python.org/mailman/listinfo/python-list
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
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
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
"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
30 matches
Mail list logo