[perl-win32-gui-users] Win32::GUI::XMLBuilder

2003-11-20 Thread Blair Sutton/Odey
Hi all, Great work on Win32::GUI, I feel with Perl's new ithreads system there's a lot of capability. I've created a basic module that uses XML::Twig to create GUIs from XML (have you seen XAML?). The XML can also include perl scripts to generate parts of the GUI on the fly. It also helps with

[perl-win32-gui-users] Win32::GUI::XMLBuilder

2003-12-14 Thread Blair Sutton/Odey
I have just made a first release for Win32::GUI::XMLBuilder. You can download the module at: - http://www.cpan.org/authors/id/B/BS/BSDZ/win32-gui-xmlbuilder.zip The module depends on XML::Twig and Laurent Rocher's home made Win32::GUI::TabFrame module. There is minimal documentation currently

[perl-win32-gui-users] Release: Win32::GUI::XMLBuilder 0.21

2004-02-29 Thread Blair Sutton/Odey
I have just made a 2nd release for Win32::GUI::XMLBuilder. You can view the module at http://search.cpan.org/~bsdz/Win32-GUI-XMLBuilder-0.21/ You can download the module at: - http://search.cpan.org/CPAN/authors/id/B/BS/BSDZ/Win32-GUI-XMLBuilder-0.21.tar.gz The module depends on XML::Twig and

[perl-win32-gui-users] HEAD cvs compile error on treeview

2004-04-04 Thread Blair Sutton/Odey
fixed by prepending following lines with cast (BOOL) in treeview.xs RETVAL = TreeView_SelectDropTarget(handle, item); -> RETVAL = (BOOL) TreeView_SelectDropTarget(handle, item); RETVAL = TreeView_SelectItem(handle, item); -> RETVAL = (BOOL) TreeView_SelectItem(handle, item); RETVAL= TreeView_Se