STRING COMPARISON

D

DAN

Hey. Does anyone know how I can compare two string to one
another using case sensitivity? Thanks.

ie. "string" <> "sTring"
 
D

Dirk Goldgar

DAN said:
Hey. Does anyone know how I can compare two string to one
another using case sensitivity? Thanks.

ie. "string" <> "sTring"

Use the StrComp function. You'll find it in the VB online help.
 
Top