Posted by Kevin Wilson on September 12, 2003 at 08:44:58:
In Reply to: Unique computer data posted by Rich on September 11, 2003 at 18:22:58:
>How could I find a value thats unique to every computer, so each computer would return a differenr number. > >Thanx Rich
** Visual Basic Code **
Dim objGUID As Object Dim strGUID As String Set objGUID = CreateObject("Scriptlet.TypeLib") strGUID = Left(objGUID.GUID, 38) Set objGUID = Nothing
** ASP Code **
Dim objGUID 'As Object Dim strGUID 'As String Set objGUID = Server.CreateObject("Scriptlet.TypeLib") strGUID = Left(objGUID.GUID, 38) Set objGUID = Nothing