ComValue.SetGuid
Sets the value to a .NET Guid by passing in either a GUID string, a ComGuid object, or a null (which creates a new Guid).
This method isn't really necessary as you can never effectively get a Guid reference into FoxPro. Instead always use
InvokeMethod()orGetProperty()to retrieve Guid values which are then returned asComValueinstances you can callGetGuid()on.
o.ComValue.SetGuid(object value)
Parameters
<>object value<> Guid to set the value to. Valid types are: String, ComGuid or null
