GUIDTXT$

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Core Language > BuiltIn Functions > String functions >

GUIDTXT$

 

Description

 

Return a 38-byte human-readable Globally Unique Identifier (GUID) or Universally Unique Identifier (UUID) string from a 16-byte GUID string.

 

Syntax

 

s = GUIDTXT$(guid16)

 

Returns

 

String

 

Parameters

 

Name

Type

Optional

Meaning









 

Remarks

 

Restrictions

 

See also

 

String Handling,

 

Examples

 

Dim oID1 As String = GUID$

Dim oID2 As String = GUIDTXT$(oID1)

InputBox$("Your new brand GUID is:" , "Created a new GUID value", oID2  )