"Adriaan Renting" <[EMAIL PROTECTED]> writes:
> I realy prefer a WYSIWYG UI design tool
> to having to code BUTTON(120, 123, 123, 335, -1, NULL, doButton, "Push",
> "push this button")

With a modern GUI library, it's more like:

     buttonBox.addWidget(Button("&New", my, "new"))

and your button is added to the buttonbox. Anything that requires you
to specify the location exactly (whether in a WYSISOWYG GUI tool or
code) is fundamentally broken.

      <mike
-- 
Mike Meyer <[EMAIL PROTECTED]>                  http://www.mired.org/home/mwm/
Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to