Dim g1 As Guid
g1 = Guid.NewGuid
this code gives a guid that is formated like:
xxxxxxxx-xxxx-xxxx-xxxxxxxxxxxx
Is there code to tell a guid not to use hyphens?
Printable View
Dim g1 As Guid
g1 = Guid.NewGuid
this code gives a guid that is formated like:
xxxxxxxx-xxxx-xxxx-xxxxxxxxxxxx
Is there code to tell a guid not to use hyphens?
There's something about formatting it if I remember correctly
vb Code:
MessageBox.Show(Guid.NewGuid.ToString("N"))
or maybe n
That did it!
Thanks