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 SpinButton1_SpinDown()
TextBox1 = DateSerial(Year(TextBox1), Month(TextBox1), Day(TextBox1) - 1)
End Sub
Private Sub SpinButton1_SpinUp()
TextBox1 = DateSerial(Year(TextBox1), Month(TextBox1), Day(TextBox1) + 1)
End Sub