PDA

View Full Version : Usage of the LCASE$ MCASE$ UCASE$ Keywords



Michael Clease
28-05-2007, 10:24
' Usage of the LCASE$ Keyword example
' Usage of the MCASE$ Keyword example
' Usage of the UCASE$ Keyword example
'
'
' Written by Abraxas

DIM MyOLDString as String value "HELLO WORLD"
DIM MyLCASEString as string
DIM MyMCASEString as string
DIM MyUCASEString as string
DIM sMsg as string

MyLCASEString = LCASE$(MyOLDString)
MyMCASEString = MCASE$(MyOLDString)
MyUCASEString = UCASE$(MyOLDString)

sMsg += "Normal " & MyOLDString & $CRLF & $CRLF
sMsg += "LCASE$ " & MyLCASEString & $CRLF & $CRLF
sMsg += "MCASE$ " & MyMCASEString & $CRLF & $CRLF
sMsg += "UCASE$ " & MyUCASEString & $CRLF & $CRLF

MsgBox 0, sMsg

Michael Clease
28-05-2007, 10:28
Remove these lines, not required.



DIM Length as Byte
Length = Len(MyOLDstring)

ErosOlmi
28-05-2007, 11:04
OK, done.
You should have authorization to modify your messages.
If not let me know, there must be something wrong with forum authorization.

Ciao
Eros

Michael Clease
28-05-2007, 11:12
cant see any edit button

ErosOlmi
28-05-2007, 11:15
There are no icons but links.
You should see just right top of every post something like: "Reply with quote" "Modify message" ...

Michael Clease
28-05-2007, 11:47
yes its there.

ErosOlmi
28-05-2007, 11:51
OK, fine.