View Single Post
  #4 (permalink)  
Old April 4th, 2002
Pferdo Pferdo is offline
Devotee
 
Join Date: March 29th, 2002
Location: Germany
Posts: 21
Pferdo is flying high
Default interested in VB-Code?

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
Reply With Quote