Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
单击框架时,我试图模仿一些动画
Private Sub frameGo_MouseDown ... frameGo.Top = frameGo.Top - 2 Private Sub frameGo_MouseUp ... frameGo.Top = frameGo.Top + 2
但是在 doubleClik 框架上,框架会持续上升,而不会回到原来的最高值。 我怎样才能防止这种情况?
Cancel the DblClick action in the event
DblClick
Private Sub frameGo_DblClick(ByVal Cancel As MSForms.ReturnBoolean) Cancel = True End Sub
`标签当向多行文本添加“段落”格式时