CreateGUID() |
Top Previous Next |
Object: EHL7.HL7Vendors FileName: EHL7.dll
METHOD
Name: CreateGUID() Parameters: None Returns: String (GUID) Description: Utility function to create a Global Unique Identifier (GUID). Can be called at any time by an instantiated HL7Vendors object regardless of whether a vendor is open or not.
Example: Private Sub VendorTest() Dim myVendorObj As New EHL7.HL7Vendors Dim strVendorID As String MsgBox myVendorObj.CreateGUID() Set myVendorObj = Nothing Exit Sub End Sub
|