RE: [perl-win32-gui-users] ListView - selected Items

2002-02-25 Thread JColwell
That will work provided you create your ListView with the name "DataView" #-- $window->AddListView #-- ( -name => "DataView", -top=> 160, -left => 0, -width => 600, -height => 200, -addstyle => WS_CH

[perl-win32-gui-users] ListView - selected Items

2002-02-25 Thread JColwell
@items = $window->DataView->SelectedItems(); then you can do something like foreach ( @items ) { # do something with each item } Jeff Colwell No electrons were harmed in making this e-mail message. -Original Message- From: Eugeniy Ogloblin [mailto:[EMAIL PROTECTED] Sent: Monda

[perl-win32-gui-users] ListView - selected Items

2002-02-25 Thread Eugeniy Ogloblin
Hello All, How to get selected items in ListView? -- Best regards, Eugeniy mailto:[EMAIL PROTECTED]

Re: [perl-win32-gui-users] ActivePerl 5.6.1 build 631 withWin32-GUI 0.0.558

2002-02-25 Thread Peter Köller
That is strange, Eric. I have no problems with ActivePerl 5.6.1 Build 631, Win32-GUI 0.0.558 and Perl2Exe 5.03. Perhaps you want to try my sources: http://sourceforge.net/projects/auctioneer/. I am making excessive use of ListViews. Hope, you find the problem, Peter > -Ursprüngliche Nachri

[perl-win32-gui-users] HTML rendering

2002-02-25 Thread Matthew Wagenknecht
Is there an easy way to render HTML? Other that shelling to IE, of course.. I have a GUI app that builds a tree based on the results of a scan.. I'd like to view a conditional web page depending on what sub-item the user clicks on.. If all else fails, I'll just shell to IE. ...::: Matt :::... Sp

Re: [perl-win32-gui-users] ActivePerl 5.6.1 build 631 with Win32-GUI 0.0.558

2002-02-25 Thread Eric Hansen
Peter, Thanks for the suggestion. For some reason, this is not helping completelty. I am at least getting a border around my ListView, but the columns and rows are still not working. I wonder if Win32-GUI 0.0.558 binary build is not compatible with 5.6.1/631 ActivePerl binary build? Also,

Re: [perl-win32-gui-users] refresh gui

2002-02-25 Thread Johan Lindstrom
At 11:32 2002-02-25 +0100, NAHUM Marc wrote: How can'i refresh a windows ? I try to made a progress bar and i need refresh the window when a new action is do ... $win->InvalidateRect(1); will send a WM_PAINT to the window, causing it to be redrawn. The method can also be called on a single co

[perl-win32-gui-users] refresh gui

2002-02-25 Thread NAHUM Marc
hye, How can'i refresh a windows ? I try to made a progress bar and i need refresh the window when a new action is do ... Thanks for help ... Marc,