OT:Re: GraphViz::Data::Structure on Win32

2003-12-30 Thread lgbarr
$Bill wrote: Hit the 'End' key (or maybe Ctrl-End) and go to the bottom of the email and remove the .sig from the prior post. Then use your up-arrow key or PageUp and move up into the email and find the portion of the post that you want to respond to. Place your response under that portion and

Memory Leak with Win32::Lanman::NetShareEnum

2003-11-19 Thread lgbarr
Hi Gurus :c) , I've got an app that runs as a service off a W2K box. Basically, what it does is, given an initial list of NT domains, it retrieves all the servers from those domains. Then I feed that list of servers to two subroutines. Subroutine 01 gets the number of open files for the server.

Re: Windows Event Log Source DLL

2003-10-23 Thread lgbarr
Look into Win32::EventLog::Message by Dave Roth. Cheers, /LG /Luiz George Ramsey Barreiros Analista Assistente de Informatica GEPRO NRT 1-RJ/SETAR Banco do Brasil S.A.

OT:Re: Perl editors

2003-09-23 Thread lgbarr
Ah!!! Nostalgia!!! :c) You guys reminded me of one of my favourite tools I had in my toolkit for editing - a steam iron. Twas great for getting you punch cards read by the punch card reader. No self respecting support analyst would be found without one :c) Cheers, /Luiz

Re: timed-out waiting for command prompt

2002-11-18 Thread lgbarr
Hummm I believe you might have to set your prompt to whatever the actual prompt is on the equipment you're telnet'ing to. cheers, /LG

Re: Get the user name not the userid with Win32::NetAdmin

2002-03-21 Thread lgbarr
Try UserGetMiscAttributes(DOMAIN, USER, INFO) from Win32::AdminMisc. It will populate the hash INFO with tons of info, including the user's full name. Cheers, /LG

Re: perl ping?

2002-03-20 Thread lgbarr
Humm I got this from the Net:Ping mod. Hope it may help. use Net::Ping; $p = Net::Ping-new(); print $host is alive.\n if $p-ping($host); $p-close(); $p = Net::Ping-new(icmp); foreach $host (@host_array) { print $host is ; print NOT