Argument | Description |
guid | An array of Byte data used to uniquely identify an application, component, or item of data to the operating system. |
Sub StringValueOfGUID()
Dim ctl As Control, strGUID As String
Set ctl = Forms!Employees!s_GUID
Debug.Print TypeName(ctl.Value)
strGUID = StringFromGUID(ctl.Value)
Debug.Print TypeName(strGUID)
End Sub