Stuart Kendrick <[EMAIL PROTECTED]> writes:
> #!perl -w
Always, always, ALWAYS "use strict".
> use Win32::TieRegistry (Delimiter=>"/", ArrayValues=>1);
>
> $tip186 = "";
>
> $tips =
> $Registry->{"LMachine/Software/Microsoft/Windows/CurrentVersion/Explorer/Tips/"}
> or
> die "Can't find the Windows tips: $^E\n";
>
> $tips{'/186'} = "Be very careful when making changes to the Registry!";
Bug; there is no %tips hash, so this creates it, which is not what you
want.
Try
$tips->{'/186'} = "Be very careful when making changes to theRegistry!";
- Pat
_______________________________________________
Perl-Win32-Admin mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs