Is there any reason while Ucase$ compare would not work if the user 'fiddled' with their locale settings? example code:-
UserName = "user1"
Select Case UCase$(UserName)
case "USER1","USER2,"USER3"
'some code here
end select
this works on my dev machine in the IDE, but once compiled and installed on users machine, doesn't work. Help.
UserName = "user1"
Select Case UCase$(UserName)
case "USER1","USER2,"USER3"
'some code here
end select
this works on my dev machine in the IDE, but once compiled and installed on users machine, doesn't work. Help.