- or download this
#!/usr/bin/perl -w
use strict;
...
my $reg = new Win32::TieRegistry $PID_KEY_ROOT, {Delimiter=>"\\"};
print "$reg\n";
$reg->CreateKey($PID_KEY) or die("$^E\n");
- or download this
Use of uninitialized value $reg n concatenation <.> or string at test.
+pl line 8.
Can't call method "CreateKey" on an undefined value at test.pl line 9.
- or download this
#!/usr/bin/perl -w
use strict;
...
my $reg = new Win32::TieRegistry $PID_KEY_ROOT,{Access=>"KEY_READ",Del
+imiter=>"\\"};
print "$reg\n";
$reg->CreateKey($PID_KEY) or die("$^E\n");
- or download this
my $reg = new Win32::TieRegistry $PID_KEY_ROOT,{Access=>"KEY_READ",Delimiter=>"\\"}; - or download this
$reg->CreateKey($PID_KEY)