Re: Wx::CompboBox options

2010-11-17 Thread Mark Dootson
Hi Lioz, The short answer is my $combo_box_1 = Wx::ComboBox ->new( $page2_panel, -1, "Please select value", wxDefaultPosition, [150,30], \...@my_optiones ); You need to pass a reference to an array. An explanation of this and more is at: http://perldoc.perl.org/perlreft

Re: WxWiki.

2010-11-17 Thread herbert breunung
I fixed this now completely, but it was sloughterwork please introduce capta or * Am 18.11.2010 00:30, schrieb Steve Cookson: > Guys, > > What's happened to the wiki? All the stuff I created has been deleted. > > Not that it was particularly well-written, but it was probably better than: > >

Re: WxWiki.

2010-11-17 Thread herbert breunung
its the newest Spambot. PLEASE HELP no other spambot was so nasty he rewrote 20 some pages if would be admin i would have kicked hoim 5 days ago when he subscribed Am 18.11.2010 00:30, schrieb Steve Cookson: > Guys, > > What's happened to the wiki? All the stuff I created has been deleted. >

WxWiki.

2010-11-17 Thread Steve Cookson
Guys, What's happened to the wiki? All the stuff I created has been deleted. Not that it was particularly well-written, but it was probably better than: "Under construction", which is the new content and a link to some site which my security complains about, so I haven`t displayed it. Maybe I'

Wx::CompboBox options

2010-11-17 Thread Lioz Cohn
Hi to all When I triad to add Combo box options with regular array- @my_optiones and I got an error my $combo_box_1 = Wx::ComboBox ->new($page2_panel, -1, "Please select value", wxDefaultPosition, [150,30], @my_optiones); As I understand an array like $array= ['aaa','bbb'] is required Ho