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.
Private Sub Form_Activate()
'To Demo Moving a control @ run time
'Native Screen positions are shown as inches in the properties
'but are stored Internally as "Twips". there are 1444 Twips per Inch
'So it is necessary to do a conversion.
Const Left1 = 3.1979 'Just for illustration. Original Position
Const Left2 = 4.0979 'Just for Illustration. Desired New Position
Const Top1 = 1.0104 'Just for illustration. Original Position
Const Top2 = 1.1104 'Just for Illustration. Desired New Position
Const TwipsPerIn = 1444 'Conversion from "Twips" to Inches
If (Abs(Me.txtNValues.Top - Top1 * TwipsPerIn) <= 100) Then
Me.txtNValues.Top = Top2 * TwipsPerIn
Me.txtNValues.Left = Left2 * TwipsPerIn
Else
Me.txtNValues.Top = Top1 * TwipsPerIn
Me.txtNValues.Left = Left1 * TwipsPerIn
End If
End Sub