Excel 加载项密码文本框

发布于 2024-11-07 14:20:38 字数 146 浏览 0 评论 0原文

我想在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

匿名的好友 2024-11-14 14:20:38

你不能没有像 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.

饮湿 2024-11-14 14:20:38

在 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?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文