Thanks, Joe. I will work with that suggestion.
Paul
On Feb 25, 2005, at 11:20 AM, Joseph J. Strout wrote:
At 11:15 AM -0500 2/25/05, Paul Young wrote:
If I resume, I get the MsgBox message but no additional lines are
added.
Ah good, everything's working as it should then. You're not catching
the exception within the loop; you're catching it at the end of the
method. So, it jumps right out of your loop, to your Exception block,
displays the message box, and then exits the method.
I was trying to be able to read all contact lines and handle the
case where no requested info is available.
Then you need to use a Try/Catch block within the loop. See the
language reference for details and examples.
Best,
- Joe
--
REAL World 2005 - The REALbasic User Conference
March 23-25, 2005, Austin, Texas
<http://www.realsoftware.com/realworld>
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives of this list here:
<http://www.realsoftware.com/listarchives/lists.html>
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives of this list here:
<http://www.realsoftware.com/listarchives/lists.html>
|