vba 在 ms access 2010 中创建工具提示
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/22403641/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Creating tooltip in ms access 2010
提问by Kaja
I have a form and the user must have horizontal scroll. Users would like to see two text boxes in right side and left side of the form, but they cant see both of them at the same time. only half of the firs textboxe and the second textbox complete
我有一个表单,用户必须有水平滚动。用户希望在表单的右侧和左侧看到两个文本框,但他们无法同时看到它们。只有第一个文本框和第二个文本框的一半完成
What I thought is to have a tooltip for the first textbox, then user can see the second textbox and with tooltip, information in the first textbox.
我认为第一个文本框有一个工具提示,然后用户可以看到第二个文本框和工具提示,第一个文本框中的信息。
How can I create a tooltip in vba Access?
如何在 vba Access 中创建工具提示?
回答by Fionnuala
There are two options, StatusBarTextproperty and ControlTipTextthat you can use to provide user feed back.
有两个选项,StatusBarText属性和ControlTipText可用于提供用户反馈。
See also TextBox Members (Access)