Guest User

Untitled

a guest
Jul 20th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. Public Function InWhatsUp(field1 As Field, field2 As Field) As String
  2. If (LCase(field1.Value) = LCase(field2.Value)) Then
  3. InWhatsUp = "True"
  4. Else
  5. InWhatsUp = "False"
  6. End If
  7. Return
  8. End Function
  9.  
  10. InWhatsUp = (str1 = str2)
  11.  
  12. StrComp(string1, string2, vbBinaryCompare)
Add Comment
Please, Sign In to add comment