in reply to GUI and Perl.NET

I've browsed through this book. There is a chapter, bout 30 pages, dedicated to GUI programming in Perl .NET, using C# widgets and methods. Problem is EVERYTHING is done by "hand-typed code", hehe, or how I should put it.. i.e. there is no examples of RAD-development in Visual Studio for example..Everything is done "manually", just like with Tk, but we now have to deal with the .NET classes instead of Tk :/..

There was a very interesting tutorial posted by Courage some time ago, A technique to create GUI design for Perl application using vtcl. I tested this briefly and it seemed to work very nicely.

Unlike the buggish nightmare of the grid based komodo (v3.0 tested) GUI tool, vtcl is based on the place geometry manager. This gives us a true "WYSIWYG" approach in creating our GUI.

What he basicly shows us is how we can, with the help of Tcl::Tk and Tcl, port a vtcl app into pTk.

..have to investigate some more on that stuff someday..