I was able to do the pop up message using Tkinker. (foll code). Is there any
other way than this?

< code >
from Tkinter import *
root = Tk()
container = Frame(root)
container.pack()
label = Label(container)
label["text"]= "Message"
label.pack()
root.mainloop()
os._exit(1)
< code >

On 10/31/07, Pearl <[EMAIL PROTECTED]> wrote:
>
> Hi
>
> In my project I am starting up a tomcat server along with turbogears
> (I have written the code for this in start-myproject.py). If something
> goes wrong in the start up process, say, tomcat server not getting
> started, I want to popup an error message showing the problem, rather
> than simply throw an exception in the command prompt and vanish. Can
> any one please tell how can I do this?
>
> Regards
> Roopesh
>
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"TurboGears" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/turbogears?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to