Tue Oct 21 04:00:48 2014: Request 99607 was acted upon. Transaction: Correspondence added by steve.cook...@sca-uk.com Queue: Wx Subject: Re: [rt.cpan.org #99607] Issue using wxTextEntryBox Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: pwnbusiness2...@centurylink.net Status: open Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=99607 >
Hi Patrick, On 21-10-2014 00:52, Patrick via RT wrote: > my $self = $ref->SUPER::new( undef, > 1, > 'Parent Window', > Wx::wxDefaultPosition, > [500, 500], > ); > my $panel = Wx::Panel->new( $self, > 2 > ); If you use -1 (or wxID_ANY) as the widget ID, it will assign the next free identifier. Then you don't have to keep track of what has already been used. Regards, Steve.