I am working on some VB Script and am using an InputBox that accepts a password. When the user types in the password, I would like it to show up as ********* Any help doing this would be great. Here is some of the code: strUserIn = InputBox("Enter Password") if strUserIn <> "" then Set fs = CreateObject("Scripting.FileSystemObject") strFileName = fs.BuildPath(Wscript.ScriptFullName & "\..", "~userp.txt") strFileName = fs.GetAbsolutePathName(strFileName) Set ts = fs.OpenTextFile(strFileName, 2, True) ts.WriteLine strUserIn ts.Close end if
M
morde1ac
@morde1ac