Contents Index StopSynchronizationDelete method Synchronize method

UltraLite ActiveX User's Guide
  UltraLite ActiveX API Reference
    ULConnection class

StringToUUID method


Prototype 

StringToUUID( s_uuid As String )
Member of UltraliteActiveX.ULConnection

Description 

Converts the universally unique identifier represented as a String in the form xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx to a Byte array of 16 bytes.

Parameters 

s_uuid    A Universally Unique Identifier passed in as a string. You can obtain a new string UUID using GetNewUUID.

Example 

The following example will convert the string form of the UUID 0a141e28-323c-4650-5a64-6e78828c96a0 to a binary array:

' eMbedded Visual Basic
Dim buff(1 to 16) As Byte
conn.StringToUUID( "0a141e28-323c-4650-5a64-6e78828c96a0", VarPtr(buff(1)) )

Contents Index StopSynchronizationDelete method Synchronize method