home *** CD-ROM | disk | FTP | other *** search
- Attribute VB_Name = "Utility"
- ' Xceed Encryption Library - Encryption Manager sample
- ' Copyright (c) 2001 Xceed Software Inc.
- '
- ' [Utility.bas]
- '
- ' This module contains utility functions code.
- '
- ' This file is part of the Xceed Encryption Library sample applications.
- ' The source code in this file is only intended as a supplement to Xceed
- ' Encryption Library's documentation, and is provided "as is", without
- ' warranty of any kind, either expressed or implied.
-
- Option Explicit
-
- Public Sub DisplayError()
-
- If Err.Number <> 0 Then
- Call MsgBox(Err.Description & " (" & CStr(Err.Number) & ")", , "Error")
- End If
-
- End Sub
-