CString StrToStars(const CString password) { CString out('*', password.GetLength()); return out; }We deliberately pass the password by value so it can't be modified.
Programming Tips - MFC: Convert a CString password into stars
Date: 2023jul31
Language: C++
Framework: MFC
Q. MFC: Convert a CString password into stars
A.