Waldemar Biernacki wrote:
Could anyone give me an advice how to dubug perl Win32::GUI script?
I tried Activestate's and OptiPerl's debuggers but both stop on
Win32::GUI::Dialog() function and I do not know what to do next.
I can't speak for the debuggers you mention, but when using the perl
command-line debugger (perl -d somescript.pl), it is important to 'step
into' Win32::GUI::Dialog(), and not 'step over'. Then when you do
something that trigger an event you should find the script stopped at
the start of your event handler.
Regards,
Rob.