thanks Mike, i'll post there.
--
http://mail.python.org/mailman/listinfo/python-list
On Mar 29, 4:27 pm, Gif <[EMAIL PROTECTED]> wrote:
> I was wondering if there is a way to extract an icon from a file
> (executable) and then add it in a listctrl. I also 'd like to know if
> i can shorten the icon in order to fit in a listctrl item.
> I've managed to get the icon from an icon file
On Nov 8, 5:45 am, [EMAIL PROTECTED] wrote:
> Hello,
>
> Here is example of my ListCtrl items with image:
>
> ( filebox1 is ListCtrl )
>
> il = wx.ImageList(16,16)
> images=["file1.png","folder.png"]
> for i in images:
> il.Add(wx.Bitmap(i))
> img_list=fi
On Nov 5, 11:00 am, [EMAIL PROTECTED] wrote:
> Hello,
>
> How can I Insert image with string in ListCtrl with this example:
>
> # Import ftputil module - like ftplib
> from ftputil import FTPHost
> # Create connection
> ftp=FTPHost("ftp.someserver.com","user","password")
>
> # LIST ALL FILES/FOLDER
On Jul 7, 7:55 am, Steve Senior <[EMAIL PROTECTED]> wrote:
> Hi,
>
> My application has a tree control in which a user can select a filter.
> This filter is then applied to the results and the results are
> constructed in the ListControl (report style) widget.
>
> This all works fine.
>
> Recently