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 x, strX
x= 49999
strX = replace(space(6-len(CStr(x))), " ", "0") & x
msgbox strX
txtJDEnum = string(6 - len(JDEnum) , "0") & cstr(JDEnum)
Response.Write(txtJDEnum)
Response.Write(cLng(txtJDEnum))
Response.Write(StandardNum(445, 7))
Function StandardNum(iNum, iLength)
'Throw error
If Not IsNumeric(iLength) Then
StandardNum = -1
End If
'Throw error
If Not IsNumeric(iNum) Then
StandardNum = -1
End If
While(Len(iNum) <= (iLength - 1))
iNum = (0 & iNum)
Wend
StandardNum = iNum
End Function