quote:
Originally posted by Mike2
Copy and paste this into notepad then save it with the name talker.lowercase.vbs in your stuff-plug.
Do NOT... This will NOT work.
1) IF it worked, then the only thing that will do is lower casing the whole string but ONLY if the whole string was uppercased. If he pressed Shift for the first letter (and thus he has something like "hOW ARE YOU") then the function will return just the same...
2) "talker = talker" ? You can't do that (in any language).
quote:
Originally posted by Mike2
Note!: This will declare the variables as variant!
They should be like this: Dim i as integer, Str As string, Char As string.
No... wrong.
1) If you don't use Dim then the variables are declared as variants anyway! But omitting the Dim statement in your projects is a bad habit.
2) Furthermore, variables in VBScript are always of the variant type
3) declaring a variable "dim x as y" is invalid in VBScript because of this and will produce an error...
quote:
Originally posted by Mike2
But i dont know much vbscript...
(or programming it seems) (edit: uncalled for) Then do NOT suggest things, both your script and comments consist of errors.