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

Pages: (2): « First « 1 [ 2 ] Last »
Big initial in a message
Author: Message:
Concord Dawn
Veteran Member
*****

Avatar
This is a loopy fruit.

Posts: 1203
Reputation: 16
33 / Male / –
Joined: Feb 2004
RE: Big initial in a message
Cookie, some advice: If it ain't broke, don't fix it.
[Image: 7.png]
10-16-2004 04:25 AM
Profile E-Mail PM Find Quote Report
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 Chaotic_Shield
Cookie, some advice: If it ain't broke, don't fix it.
There is also something like: "don't do what a build-in function already does", "don't invent the wheel again", "useless/double coding", "effecienty"...

And about the "ain't broke": the function of Matty doesn't uppercase sentences in foreign languages. (eg: "één mooie zomeravond" isn't uppercased; with my function it is)

The function of Matty wasn't broken indeed, but it could be slightly improved...

This post was edited on 10-16-2004 at 02:58 PM by CookieRevised.
.-= A 'frrrrrrrituurrr' for Wacky =-.
10-16-2004 02:55 PM
Profile PM Find Quote Report
Spanker
Junior Member
**

Avatar
<| Code Surfer |>

Posts: 16
38 / Male / Flag
Joined: May 2004
RE: Big initial in a message
o cool
but is there any form to make it
that changes the first letter of every word
to capital ??

"Like This."

can a script like that be done ? ^o)
10-16-2004 04:37 PM
Profile PM Find Quote Report
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
Leif
Full Member
***

Avatar

Posts: 483
Reputation: 4
81 / Male / –
Joined: Apr 2002
RE: RE: Big initial in a message
quote:
Originally posted by Zales
o cool
but is there any form to make it
that changes the first letter of every word
to capital ??

"Like This."

can a script like that be done ? ^o)



We Don't Want That, Do We?
Looks bloody awful, if you ask me!
So don't ask me ...  :P
10-17-2004 12:38 AM
Profile E-Mail PM Find Quote Report
Pages: (2): « First « 1 [ 2 ] Last »
« Next Oldest Return to Top Next Newest »


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