Computer Science Canada Error checking |
Author: | Justin_ [ Wed Jan 18, 2006 11:11 am ] |
Post subject: | Error checking |
in turing str.upper would make all user input uppercase. How do you perform the same task in VB? I ask because i am taking in user input and I don't want there to be indiscrepency between my answers and there answers. Thanks, |
Author: | pavol [ Wed Jan 18, 2006 11:18 am ] |
Post subject: | |
LCase(string value) would make all lowercase and UCase(string value) would make all uppercase |
Author: | Justin_ [ Wed Jan 18, 2006 11:28 am ] |
Post subject: | |
yes it worked, thanks. |