What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » WLM Plus! Help » Big initial in a message

Big initial in a message
Author: Message:
CookieRevised
Elite Member
*****

Avatar

Posts: 15519
Reputation: 173
– / Male / Flag
Joined: Jul 2003
Status: Away
RE: Big initial in a message
quote:
Originally posted by Zales
but is there any form to make it
that changes the first letter of every word
to capital ??
code:
Function talker(strInput)
  Dim strTemp, I 
  strTemp = strInput
  I = 0
  Do
    strTemp = Left(strTemp, I) + UCase(Mid(strTemp, I+1, 1)) + Mid(strTemp, I+2)
    I = Instr(I+2, strTemp, " ")
  Loop Until I = 0
  talker = strTemp
End Function
and if you want everything else lowercased replace
   strTemp = strInput
with
   strTemp = LCase(strInput)
.-= A 'frrrrrrrituurrr' for Wacky =-.
10-17-2004 12:28 AM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Big initial in a message - by zhorty on 10-02-2004 at 12:28 AM
RE: Big initial in a message - by CookieRevised on 10-02-2004 at 01:11 AM
RE: Big initial in a message - by zhorty on 10-15-2004 at 04:46 PM
RE: Big initial in a message - by crank on 10-15-2004 at 05:15 PM
RE: Big initial in a message - by matty on 10-15-2004 at 05:51 PM
RE: Big initial in a message - by zhorty on 10-15-2004 at 06:50 PM
RE: Big initial in a message - by zhorty on 10-15-2004 at 06:51 PM
RE: Big initial in a message - by matty on 10-15-2004 at 06:54 PM
RE: RE: Big initial in a message - by zhorty on 10-15-2004 at 07:08 PM
RE: RE: Big initial in a message - by CookieRevised on 10-15-2004 at 11:55 PM
RE: Big initial in a message - by Concord Dawn on 10-16-2004 at 04:25 AM
RE: Big initial in a message - by CookieRevised on 10-16-2004 at 02:55 PM
RE: Big initial in a message - by Spanker on 10-16-2004 at 04:37 PM
RE: RE: Big initial in a message - by Leif on 10-17-2004 at 12:38 AM
RE: Big initial in a message - by CookieRevised on 10-17-2004 at 12:28 AM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On