Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Option Compare Database
Option Explicit
Dim ObjectNamed As String
Private Sub Detail_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
on error goto Err
If ObjectNamed = "Text1" And Button = 2 Then
Text1.Left = X
Text1.Top = Y
End If
ObjectNamed = ""
Err:
End Sub
Private Sub Text1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Shift = 1 Then
ObjectNamed = "Text1"
End If
End Sub