tinti wrote:
Thanks for this information, I've read that Win32::GUI::ThreadUtils is currently experimental!? Do you have used Win32::GUI::ThreadUtils in a real environment and tested it for stability?

I've not used it in anger for a project, but equally I've not had any problems or had any problems reported. The 'experimental' label, is mainly because I know there are some additional things I want to complete, and the fact that there's no real documentation.

Regards,
Rob.


kindest regards,
tinti


Jeremy White wrote:
I'm in trouble using Win32::GUI together with Event::RPC::Server.
How
can I run both in my script?

The RPC parts needs the following lines to start:

my $server = Event::RPC::Server->new (
        port    => 5555,
);
$server->start;

and Win32::GUI needs:
Win32::GUI::Dialog();

both are started as threads! How can I start both in one script??
Create a thread and start RPC in that thread, then do
Win32::GUI::Dialog()
in the main thread.
If you're going to do this, you might find Win32::GUI::ThreadUtils useful - available from http://www.robmay.me.uk/win32gui/

Regards,
Rob.


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Perl-Win32-GUI-Users mailing list
Perl-Win32-GUI-Users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users
http://perl-win32-gui.sourceforge.net/



Reply via email to