'End Try' must be preceded by a matching 'Try'
EndTry is used to complete a Try block, and hence it can only appear at the end of the block. Either you have a redundant End Try statement, or your EndTry statement appears outside the bounds of its corresponding Try block.
Error ID: BC30383
To correct this error
Locate and remove the unnecessary End Try.
Move the End Try to the appropriate location in your code.
See Also
Concepts
Structured Exception Handling Overview for Visual Basic