Hello everyone~
I find myself in a dire situation. I programmed a pretty nice Access application for the place I work at and so far I fixed any of my logic problems without having to post anything on forums. I somehow managed!
Now I have this one problem. I've looked around a lot, but nothing really solved my problem correctly or at least I couldn't understand it.
Here's my problem, I want to make this bit of code below case sensitive :
What would you suggest? Thanks in advance.
Edit :
Whole code : http://pastebin.com/ygUVpEvj
I find myself in a dire situation. I programmed a pretty nice Access application for the place I work at and so far I fixed any of my logic problems without having to post anything on forums. I somehow managed!

Now I have this one problem. I've looked around a lot, but nothing really solved my problem correctly or at least I couldn't understand it.
Here's my problem, I want to make this bit of code below case sensitive :
Code:
SQL_Entire = "WHERE [" & ReplaceStringSelectedField & "] LIKE '*" & SearchedString & "*';"
SQL_Beginning = "WHERE [" & ReplaceStringSelectedField & "] LIKE '" & SearchedString & "*';"
SQL_End = "WHERE [" & ReplaceStringSelectedField & "] LIKE '*" & SearchedString & "';"
What would you suggest? Thanks in advance.
Edit :
Whole code : http://pastebin.com/ygUVpEvj
Last edited: