home *** CD-ROM | disk | FTP | other *** search
/ ftp.tcs3.com / ftp.tcs3.com.tar / ftp.tcs3.com / DRIVERS / Audio / Office2010 / InfoPath.en-us / InfLR.cab / FL_TryCatchFinallyEndTry_snippet_142667_ENU____.3643236F_FC70_11D3_A536_0090278A1BB8 < prev    next >
Extensible Markup Language  |  2008-06-12  |  926b  |  30 lines

  1. ∩╗┐<?xml version="1.0" encoding="UTF-8"?>
  2. <CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
  3.   <CodeSnippet Format="1.0.0">
  4.     <Header>
  5.       <Title>Try...Catch...Finally...End Try Statement</Title>
  6.       <Author>Microsoft Corporation</Author>
  7.       <Description>Inserts a Try...Catch...Finally...End Try statement.</Description>
  8.       <Shortcut>TryCF</Shortcut>
  9.     </Header>
  10.     <Snippet>
  11.       <Imports>
  12.       </Imports>
  13.       <Declarations>
  14.         <Object>
  15.           <ID>ExceptionType</ID>
  16.           <Type>Exception</Type>
  17.           <ToolTip>Replace this with the specific Exception Type to catch.</ToolTip>
  18.           <Default>ApplicationException</Default>
  19.         </Object>
  20.       </Declarations>
  21.       <Code Language="VB" Kind="method body"><![CDATA[Try
  22.  
  23. Catch ex As $ExceptionType$
  24.  
  25. Finally
  26.  
  27. End Try]]></Code>
  28.     </Snippet>
  29.   </CodeSnippet>
  30. </CodeSnippets>