Aug 31, 2004 #1 tothemax MIS Joined Sep 27, 2001 Messages 15 Location US Trying to decipher some code. Can anyone tell me what this might be doing? Format(lName.text, ">")
Aug 31, 2004 #2 zemp Programmer Joined Jan 27, 2002 Messages 3,301 Location 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 Joined Feb 4, 2002 Messages 1,978 Location 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 Joined Sep 27, 2001 Messages 15 Location US These answers are what I need. Thank you so much for the help!! Upvote 0 Downvote