Posts: 14
Threads: 7
Joined: Jan 2005
Hi,
Is there any way to change the case of text in QM i.e. All capitals or all small case? I had a look about but can't seem to find anything.
Thanks for any help.
Posts: 12,140
Threads: 142
Joined: Dec 2002
str s.getsel ;;copy to variable s
s.ucase ;;or s.lcase
s.setsel ;;paste
Posts: 14
Threads: 7
Joined: Jan 2005
Hi Gintaras,
Many thanks again for your reply.
Sorry, I might not have been very clear in my post, but could you give me an examlpe of how to paste lower case text from the clipboard as upper case?
Thanks again.
Posts: 12,140
Threads: 142
Joined: Dec 2002
str s.getclip ;;get clipboard text
s.ucase
s.setsel
Posts: 14
Threads: 7
Joined: Jan 2005
Exclellent, thanks so much Gintaras, very quick and helpful yet again.