Programming Reference Manual
 
Syntax
 
Result = URLEncode(Url[, SpacePlus])
 
Description
Converts an html-link into in a valid escaped URL, optionally converting "+" and " " into valid characters.
 
Parameter
Description
URL
The specified html-link to be formatted into a valid URL.
SpacePlus
Optional, Boolean. If True, the "+" and space characters are converted in html-encoded strings:
"+" -> %"2B"
" " -> "+"
See Also
Example
 
Sub Main
    Debug.Print Unique(“C:\”)
End Sub