Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim fs, x
Dim strTemp, strPass
'Modified From: [URL unfurl="true"]http://4guysfromrolla.com/webtech/tips/t011100-1.shtml[/URL]
Set fs = CreateObject("Scripting.FileSystemObject")
For x = 1 To 3
'Get just the filename part of the temp name path
strTemp = fs.GetBaseName(fs.GetTempName)
'Hack off the 'rad'
strTemp = Right(strTemp, Len(strTemp) - 3)
'To get a length of 15
strPass = strTemp & strPass
Next
Debug.Print strPass
strPass = ""
Set fs = Nothing
Sub GenerateRandom()
'*****VARIABLE DECLARATIONS*****
Dim MyHex1, MyHex2, MyHex3, myIdentifier
On Error GoTo Err_GenerateRandom
'Initialize random generator
Randomize
MyHex1 = HEX(INT(100*Rnd()+899)
MyHex2 = HEX(INT(100*Rnd()+899)
MyHex3 = HEX(INT(100*Rnd()+899)
MyIdentifier = MyHex1 & MyHex2 & MyHex3
Msgbox "Unique identifier: " & MyIdentifier
Exit_GenerateRandom:
Exit Sub
Err_GenerateRandom:
Msgbox Err.Description
Resume Exit_GenerateRandom
End Sub
MyHex1 = HEX(INT(100*Rnd()+899)[!])[/!]
MyHex2 = HEX(INT(100*Rnd()+899)[!])[/!]
MyHex3 = HEX(INT(100*Rnd()+899)[!])[/!]
Function DateTimeGUID() As String
DateTimeGUID = Right(String(4, 48) & Year(Now()), 4)
DateTimeGUID = DateTimeGUID & Right(String(4, 48) & Month(Now()), 2)
DateTimeGUID = DateTimeGUID & Right(String(4, 48) & Day(Now()), 2)
DateTimeGUID = DateTimeGUID & "G"
DateTimeGUID = DateTimeGUID & Right(String(4, 48) & Hour(Now()), 2)
DateTimeGUID = DateTimeGUID & Right(String(4, 48) & Minute(Now()), 2)
DateTimeGUID = DateTimeGUID & Hex(CInt(Right(String(4, 48) & Second(Now()), 2)) + 195)
End Function