in reply to Re: Create a separate process with a sub...
in thread Create a separate process with a sub...
sub clearSecurity { # As of Outlook 2000 SP2, MS has added a security component that preve +nts any code # run from accessing Outlook's inner properties. To impede that techni +cal protection # we need to clear the security popup window. my $securityHandle = 0; while (1) # keep on running the test { sleep(5); # sleep 5 seconds to wait for popup window to come up +(should there be one) $securityHandle = LTG::dialog::findSecurityWindow(); LTG::dialog::clearSecurityWindow($securityHandle) if ($securityH +andle); } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Create a separate process with a sub...
by bm (Hermit) on Aug 15, 2003 at 12:45 UTC | |
by Foggy Bottoms (Monk) on Aug 15, 2003 at 13:22 UTC |