hi, here's "my" code for this "problem"... should even be understood by C programmers
Public Function GetRandomGUID() As String
Dim intIndex As Integer
Randomize Timer
For intIndex = 1 To 16
GetRandomGUID = GetRandomGUID + Chr$(CInt(Rnd * 255))
Next
End Function
CU