in reply to Win32::TieRegistry and Delimiter

Hmmm, have you tried accessing a simpler key to make sure Win32::TieRegistry is working?

If not, then the delimiter is the least of your worries :)

But in any case, you're likely to be safer using '\' (or "\\") as your delim, since that's what windows uses, and I'm pretty sure it's not allowed in the key names. Anything else might show up in the keys, as you've already discovered, and foul you up.

Since you've already tried "\\", I'd think that "W32::TR just not working" is the likeliest case, though.

Run the simple test and let us know...
--
Mike

Replies are listed 'Best First'.
Re: Re: Win32::TieRegistry and Delimiter
by mumbles (Friar) on Apr 15, 2002 at 14:23 UTC
    Yes, Win32::TieRegistry is working.
    It's used a few times before geting to that point in the script without errors.

    I was hoping not to have to change the delim for that reason and thought there must be an easier workaround.
    Kinda painted myself into a corner I suppose.

    Thanks