conver string to upper case with Ilogic

conver string to upper case with Ilogic

Darkforce_the_ilogic_guy
Advisor Advisor
1,044 Views
1 Reply
Message 1 of 2

conver string to upper case with Ilogic

Darkforce_the_ilogic_guy
Advisor
Advisor

is that a way to convery an string to upper case?

 

so if I want to make an if statment that is true  no matter if the case of the letter is not the same ?

dim properties1= "String"

 

dim properties2= "STRING"

if properties1= Properties2 then

 

end if 

 

 

0 Likes
Accepted solutions (1)
1,045 Views
1 Reply
Reply (1)
Message 2 of 2

JhoelForshav
Mentor
Mentor
Accepted solution

Hi, use UCase:

 

Dim properties1= "String"

 

Dim properties2= "STRING"

If UCase(properties1) = UCase(properties2) Then

 MsgBox("they're the same")

End If