|
-
May 25th, 2001, 09:17 AM
#1
Thread Starter
New Member
Lowercase
how do u convert inputbox's input to lower case?
Gorf
-
May 25th, 2001, 09:32 AM
#2
PowerPoster
-
May 25th, 2001, 07:33 PM
#3
Good Ol' Platypus
Someone wanted to do this a while ago. Putting fox's code in the change function would reverse the string so you should use the string reversal function as well.
All contents of the above post that aren't somebody elses are mine, not the property of some media corporation. 
(Just a heads-up)
-
May 25th, 2001, 07:59 PM
#4
Also have a look at the strconv function.
-
May 25th, 2001, 09:48 PM
#5
PowerPoster
Putting fox's code in the change function would reverse the string.
What???
-
May 25th, 2001, 09:49 PM
#6
Agreed Fox...
Sas, WHAT? =)
Z.
-
May 25th, 2001, 09:57 PM
#7
Good Ol' Platypus
All contents of the above post that aren't somebody elses are mine, not the property of some media corporation. 
(Just a heads-up)
-
May 25th, 2001, 10:01 PM
#8
Good Ol' Platypus
From reading other's posts, I have gathered that (because this exact Q was asked a while ago) doing this will reset the cursor to the front of the textbox, so that it appears to be reversing...
And Fox and Zaei...
DONT DO THAT
Please
All contents of the above post that aren't somebody elses are mine, not the property of some media corporation. 
(Just a heads-up)
-
May 25th, 2001, 10:18 PM
#9
Yes, it does stick the cursor at the fron of the box, but thats not even close to reversing =). Besides, ALL textbox assignments do that.
Z.
-
May 26th, 2001, 06:11 AM
#10
Member
Just set the SelStart property to the len() if the text to put it on the end again...
-
May 26th, 2001, 11:26 AM
#11
Or you could do something like:
Code:
Dim x As String
Dim i As Long
Me.Show
x = LCase(InputBox(""))
For i = 1 To Len(x)
SendKeys Mid(x, i, 1)
Next i
...but thats a bit dumb, no? =).
Z.
-
May 28th, 2001, 09:29 AM
#12
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|