Aug 31, 2004 #1 tothemax MIS Sep 27, 2001 15 US Trying to decipher some code. Can anyone tell me what this might be doing? Format(lName.text, ">")
Aug 31, 2004 #2 zemp Programmer Jan 27, 2002 3,301 CA It might be used to capitalize all the letters in the text box. If that is the case the Ucase function would be cleaner. zemp Upvote 0 Downvote
It might be used to capitalize all the letters in the text box. If that is the case the Ucase function would be cleaner. zemp
Sep 1, 2004 #3 Swi Programmer Feb 4, 2002 1,963 US Leave it up to VB to give you various way to accomplish the same thing. It is all about preference: Private Sub Command1_Click() MsgBox Format$("tEsT", ">") MsgBox UCase$("tEsT") MsgBox StrConv("tEsT", vbUpperCase) End Sub Swi Upvote 0 Downvote
Leave it up to VB to give you various way to accomplish the same thing. It is all about preference: Private Sub Command1_Click() MsgBox Format$("tEsT", ">") MsgBox UCase$("tEsT") MsgBox StrConv("tEsT", vbUpperCase) End Sub Swi
Sep 1, 2004 Thread starter #4 tothemax MIS Sep 27, 2001 15 US These answers are what I need. Thank you so much for the help!! Upvote 0 Downvote