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
Function myUpperCheck(strCheckString As String) As Boolean
If StrComp(strCheckString, UCase(strCheckString), vbBinaryCompare) Then
myUpperCheck = False
Else
myUpperCheck = True
End If
End Function
One great thing of posting a possible solution is that it makes you use the idle time of the brain!