The way its working right now is that in the next release, PasswordChar can be reset like this:

$TextBox.PasswordChar = ""

but while reviewing dotnet, it appears that the kixscript equivalent would be something like this:

$TextBox.PasswordChar = CHR(0)

but I don't know - think the first way is a bit more intuitive - can't really think why anyone would want to SET the PasswordChar to a "" - and what would that really mean anyways ? So as far as I can see - the "" string is a good candidate to serve as a reset. Unless I'm missing something.

-Shawn