Hey Peter! Wie geht's? :-) Hey Morbus! > I had no problems with "use strict" (you can have a look at my source code > http://sourceforge.net/projects/auctioneer/)
The real question is this: how do you get your variables into your widget event control subroutines? e.g. the code below: use strict; my $x = 1; sub Button_Click { ++$x } this will fail because there is no way (AFAIK) to pass $x into the subroutine as the result of a click... I had a look at the AmphetaDesk code that Morbus suggested (I haven't looked at auctioneer yet...), but that doesn't seem to use strict in all of its modules, so that doesn't count. I'm still not convinced that it is possible... M