Re: Considering migrating to Python from Visual Basic 6 for engineering applications

2016-02-20 Thread nholtz
On Wednesday, February 17, 2016 at 2:49:44 PM UTC-5, wrong.a...@gmail.com wrote: > I am mostly getting positive feedback for Python. > ... I'm surprised no one has mentioned jupyter yet, so here goes ... A browser-based notebook, see http://www.jupyter.org I think this is an unparalleled way to

Tkinter: ability to delete widgets from Text and then re-add them

2006-05-12 Thread nholtz
Is there any way to delete a widget (window) from a Text widget, and then add it back to the Text, without re-creating the original widget. For example, I think I would like to do something like the following: ## from Tkinter import * root =

Re: Tkinter: ability to delete widgets from Text and then re-add them

2006-05-12 Thread nholtz
Sigh. Of course, near the middle is supposed to be: delete the last one from Text widget = widgets[-1] -- http://mail.python.org/mailman/listinfo/python-list

Re: Tkinter: ability to delete widgets from Text and then re-add them

2006-05-13 Thread nholtz
I now see that I can accomplish what I want using the Canvas widget, instead of the Text widget (I.e., I can create a window on it, delete the window, then re add it without recreating the underlying widget object). As I don't want the raw contents user-editable, I guess its better to use a Canvas