Hey John, since VB is not case sensitive, can u pleez not make smilies case sensitive? Here is what I mean:
:P should be :p
:d should be :D
Printable View
Hey John, since VB is not case sensitive, can u pleez not make smilies case sensitive? Here is what I mean:
:P should be :p
:d should be :D
It is done this way because of the performance hit that would be required if they were to check case insensitive smilies. So just use the clicky thingy to the left of the posting box.
John
Yes, but that takes more time :D
And also is this so much more performance consuming?
VB Code:
If UCase$(strSmiley) = ":[b][/b]D" Then . . . End If 'As opposed to this? If strSmiley = ":[b][/b]D" Then . . . End If 'Or whatever the heck the PHP equivelent is?
Quote:
Originally posted by John
clicky thingy
Hehe :D:D
*ahem* - John, can't you use a case-insensitive replace function for the smileys?