Am 29.07.2011 19:15, schrieb Ethan Furman:
When running commands from cmd the title bar will update to relect the currently running command. Is there a way to have python scripts run from cmd.exe to update the cmd title bar?~Ethan~
from ctypes import windll
windll.kernel32.SetConsoleTitleA("foobar")
-or-
windll.kernel32.SetConsoleTitleA(u"spam")
Thomas
_______________________________________________
python-win32 mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-win32
