Excel 加载项密码文本框
我想在 Excel 加载项功能区中进行身份验证,并且登录表单是在功能区中构建的(无模式窗口),但我需要隐藏密码文本框中的密码。功能区不允许添加到组文本框,因此我使用编辑框输入登录名和密码。
您知道如何为功能区中的文本框设置“set_PasswordChar”吗?
I want make authentication in Excel Add-in Ribbon and sign in form is build in Ribbon (no modal window) but I need hide password characted in password text box. Ribbon don't allow add to group text box so I use edit box for enter login and password.
Do you know how can I set up "set_PasswordChar" for text box in ribbon?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你不能没有像 onkeyup 这样的事件来捕获。唯一的方法是生成一个表单并在功能区组件之外管理登录。
RibbonEditBos 上唯一的事件是 TextChanged 和 Dispose。
对于 TextChanged 你不能捕获单个字符 mod。当你提交模组时它会触发。
You can't there is no event to trap like onkeyup. The only way is to spown a form and manage the login outside the ribbons componet.
The only event on RibbonEditBos is TextChanged and Dispose.
For the TextChanged u can't trap single char mod. It fire when u submit the mods.
在 onkeyup 事件中,从文本框中取出字符,并将其替换为 * 将其存储到变量中以捕获密码,然后您只需显示一系列“**< /strong>”在文本框中。这是您要找的吗?
On the onkeyup event, take the character out of the textbox, and replace it with an * store this into a variable to capture the password, then you just show a series of "**" in the text box. Is this what you're looking for?