Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi all, is it possible to limit the number of text put into an input box
? Les Stout *** Sent via Developersdex http://www.developersdex.com *** |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
The InputBox allows for a Title parameter Where you can instruct the user to
Not enter over 8 text characters (say), but additionaly put in a line of code following the Inputbox line, somthing like.. ans = Incputbox("Enter proper text - Limit to 10 Characters..") if Len(ans) 10 then Msgbox "Too many characers, limit to 10 or less" "Les Stout" wrote: Hi all, is it possible to limit the number of text put into an input box ? Les Stout *** Sent via Developersdex http://www.developersdex.com *** |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks so much, will implement.
Les Stout *** Sent via Developersdex http://www.developersdex.com *** |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
Public Sub test() Dim InputOK As Boolean, myText As String Do InputOK = True myText = InputBox(prompt:="Input 8 characters or less") If Len(myText) 8 Then MsgBox "Too many characters!" InputOK = False End If Loop Until InputOK End Sub regards Paul On Mar 7, 4:03 pm, Les Stout wrote: Hi all, is it possible to limit the number of text put into an input box ? Les Stout *** Sent via Developersdexhttp://www.developersdex.com*** |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks very much Paul, your input is much appreciated
Les Stout *** Sent via Developersdex http://www.developersdex.com *** |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
inputbox question | Excel Discussion (Misc queries) | |||
Inputbox question | Excel Programming | |||
Inputbox question | Excel Programming | |||
Inputbox Question | Excel Programming | |||
Inputbox question | Excel Programming |