René Nyffenegger's collection of things on the web
René Nyffenegger on Oracle - Most wanted - Feedback -
 

option compare text [VBA]

option explicit 
option compare text

' See also option_combare_binary()
public sub option_compare_text ()

  if "SOMETEXT" = "sometext" then
     msgBox "SOMETEXT = sometext"
  else
     msgBox "SOMETEXT != sometext"
  end if

end sub
See also other VBA stuff