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では、フレームは元の最高値に戻らずに継続的に上昇しています。 どうすればこれを防ぐことができますか?
DblClickイベントのアクションをキャンセルします
DblClick
Private Sub frameGo_DblClick(ByVal Cancel As MSForms.ReturnBoolean) Cancel = True End Sub