如何将文本从一个文本框拖到用户窗体中的另一个文本框

how can I drag text from one a textbox to another textbox in a userform

我在用户表单中有 20 个文本框,我想将文本从 textbox1 移动到 textbox5 通过用鼠标拖放它,但我真的不知道该怎么做。我在 VBA 不是经验丰富的程序员,所以也许这甚至不可能

不需要VBA!它比你想象的要简单:)

在设计时将 TextBox 的 DragBehavior 设置为 fmDragBehaviorEnabled,如下所示,您就完成了

在行动