如何从文本框中删除光标(在进度条中)?
How to remove cursor from Textbox (in a progress bar)?
我使用了 Excel Easy (https://www.excel-easy.com/vba/examples/progress-indicator.html) 中的教程来创建进度条 (TextBbox
)。我按照确切的步骤操作,但我的进度条有些奇怪。
如何从中删除光标?
如何摆脱那种类似光标的东西?
您必须使用 Label 而不是 TextBox
将.Enabled
属性设置为False
This obviously goes without saying, that you won't be able to input anything inside the Textbox
我使用了 Excel Easy (https://www.excel-easy.com/vba/examples/progress-indicator.html) 中的教程来创建进度条 (TextBbox
)。我按照确切的步骤操作,但我的进度条有些奇怪。
如何从中删除光标?
如何摆脱那种类似光标的东西?
您必须使用 Label 而不是 TextBox
将.Enabled
属性设置为False
This obviously goes without saying, that you won't be able to input anything inside the
Textbox