in reply to Re: use Win32::IEAutomation;
in thread use Win32::IEAutomation;

Shouldn't the backslashes of the path in the SetValue() call be escaped since they're in a double-quoted string?

Cheers,

JohnGG

Replies are listed 'Best First'.
Re^3: use Win32::IEAutomation; (\\)
by tye (Sage) on Dec 28, 2011 at 16:55 UTC

    Very much so. "\t" is a tab character, in that code. But backslashes often should be doubled even when they are inside a single-quoted string. That wouldn't be required for any of these particular backslashes (if the quotes were changed to single quotes), but it might be wise, depending on your style choices and programming habits.

    - tye