
February 24th, 2004, 09:18 PM
|
|
Contributing User
|
|
Join Date: Feb 2003
Location: Canada
|
|
Yes, it is very much possible.
I'll show you how to make a simple message box, using Tkinter (which comes with Python):
Code:
from Tkinter import *
w = Button(text="Hello", command='exit')
w.pack()
w.mainloop()
Also, reaper69, I don't think the moderators or admins appreciate how you wrote the two posts above, and the subject. People like to know what exactly they are trying to help. So a valid subject would be something like "How do I make a message box?" You used way too many exclamation and question marks. I'm not being mean, or anything. I just want to warn you just in case this gets you in trouble in the future. Anyways, if you have further questions, feel free to post. We here at DevShed love to help. 
Last edited by MasterChief : February 24th, 2004 at 09:41 PM.
|