Re: Is "check item" method in Wx::CheckListBox wrapped/implemented?

2013-07-07 Thread Helen Craigman
Thank you, Johan. You are right. I was trying "SetItemChecked" which was probably deprecated. Many thanks - Helen. - Original Message - From: Johan Vromans To: wxperl-users@perl.org Sent: Sunday, 07 July, 2013 19:19 Subject: Re: Is "check item" method

Re: Is "check item" method in Wx::CheckListBox wrapped/implemented?

2013-07-07 Thread Johan Vromans
Helen Craigman writes: > I am trying to use Wx::CheckListBox. In general, it works, but I need to > checkmark some boxes programatically. > In the wxWidgets documentation, it says this can be done using the Check > method: > (URL: > http://docs.wxwidgets.org/2.8/wx_w

Is "check item" method in Wx::CheckListBox wrapped/implemented?

2013-07-07 Thread Helen Craigman
Dear esteemed wxPerl experts: I am trying to use Wx::CheckListBox. In general, it works, but I need to checkmark some boxes programatically. In the wxWidgets documentation, it says this can be done using the Check method: (URL: http://docs.wxwidgets.org/2.8/wx_wxchecklistbox.html

Re: Wx::CheckListBox

2011-03-17 Thread Mattia Barbon
On 15/03/11 22.38, Bruce Ravel wrote: Hi, I don't understand why appending items with client data to a CheckListBox does not work on Windows. This script: It's a wxWidgets limitation: it uses the same Win32 client data slot in wxListBox to store client data, in wxCheckListBox to store t

Wx::CheckListBox

2011-03-15 Thread Bruce Ravel
w(undef, -1, 'demo', [-1, -1], [250, 150], ); my $clb = Wx::CheckListBox -> new($frame, -1, wxDefaultPosition, wxDefaultSize, []); $frame -> Show(1); $clb -> Append('a', [11, 12, 13]); $clb -> Append('b', [21, 22,

GetItem($id) for Wx::CheckListBox

2009-04-01 Thread Veli Ogla Sungutay
Hey guys, There is no GetItem() for wxCheckListBox. It is defined in wxListCtrl. And apparently CheckListBox is not derived from wxListCtrl. Am I missing something or both the underlying wxWidgets (C++) and wxPerl really don't have this feature? Thanks guys -- Veli Sungutay http://www.lyciasoft.

Re: Wx::CheckListBox under Windows

2008-08-22 Thread Octavian Rasnita
From: "Mattia Barbon" <[EMAIL PROTECTED]> Octavian Rasnita wrote: I also asked on another mailing list, and a list member told me: "When you were compiling wxWidgets, did you enable the accessibility flag? You can do this in one of two ways. 1. remove the comment that says "enable accessibil

Re: Wx::CheckListBox under Windows

2008-08-21 Thread Mattia Barbon
idgets release just in case. Regards, Mattia - Original Message - From: "Huub Peters" <[EMAIL PROTECTED]> To: "Octavian Rasnita" <[EMAIL PROTECTED]> Cc: Sent: Monday, August 18, 2008 2:36 PM Subject: Re: Wx::CheckListBox under Windows Octavian Rasnita wrote:

Re: Wx::CheckListBox under Windows

2008-08-18 Thread Octavian Rasnita
ot; <[EMAIL PROTECTED]> To: "Octavian Rasnita" <[EMAIL PROTECTED]> Cc: Sent: Monday, August 18, 2008 2:36 PM Subject: Re: Wx::CheckListBox under Windows Octavian Rasnita wrote: I need to use a Wx::CheckListBox under Windows, but it doesn't seem to work. I&#x

Re: Wx::CheckListBox under Windows

2008-08-18 Thread Huub Peters
Octavian Rasnita wrote: I need to use a Wx::CheckListBox under Windows, but it doesn't seem to work. I've tried: $self->rss_sources(Wx::CheckListBox->new($self, -1, [20, 50], [300, 300])); but it creates just a common Wx::ListBox that doesn't have check boxes. Thi

Wx::CheckListBox under Windows

2008-08-18 Thread Octavian Rasnita
Hi, I need to use a Wx::CheckListBox under Windows, but it doesn't seem to work. I've tried: $self->rss_sources(Wx::CheckListBox->new($self, -1, [20, 50], [300, 300])); but it creates just a common Wx::ListBox that doesn't have check boxes. I have also tried to us