RE: perl Tk question

2005-06-01 Thread BLAHA Jan
> When executing this snippet > I see in text0 only the last $i /in for cycle/ > What I must add to prg code > in order to see all cosequtive values of $i ? for (my $i=0;$i<20;$i++){ #$text0->delete('0.0','end'); # just don't delete everytime all contents of the box $text0->insert

RE: Mapping Drive

2005-03-25 Thread BLAHA Jan
> Hi All, > I was wondering if anyone know of a perl module that let's me > map to a network path. > Example: g:\ = \\wongd01\blds This functionality is provided by Win32::NetResource module and its AddConnection method. best regards, Jan Blaha P.S. Example could be something like: use s

RE: How to use "#! perl " to directly run perl script on Win32 platform?

2005-01-21 Thread BLAHA Jan
> Subject: How to use "#! perl " to directly run perl script on > Win32 platform? > > > Hello , > > Could you please tell me how to use "#! perl " to directly run perl > script on Win32 platform? > > Assume that ActivePerl has installed in "c:\perl" . > > Any help will be appreciated. > Th