GUID$
<< Click to Display Table of Contents >> Navigation: ThinBASIC Core Language > BuiltIn Functions > String functions > GUID$ |
Description
Return a 16-byte (128-bit) Globally Unique Identifier (GUID) or Universally Unique Identifier (UUID) binary string.
Syntax
s = GUID$[(guidtext)]
Returns
String
Parameters
Name |
Type |
Optional |
Meaning |
Remarks
Restrictions
See also
Examples
Dim oID1 As String = GUID$
Dim oID2 As String = GUIDTXT$(oID1)
InputBox$("Your new brand GUID is:" , "Created a new GUID value", oID2 )