Tac wrote: >How can I stop an error from trying to get a non-existent property from the >perl API? I'm particular, I have > > $result->Property( "year" ), > You just need to wrap it in an eval block and handle the exception: my $year = eval { $result->Property("year") }; if ($@) { # Do something with the error } -- Keith Ivey <keith@smokefreedc.org> Washington, DCReceived on Thu Jul 8 08:16:52 2004