InputBox and UBound input validation

Anything VBScript-related, including Windows Script Host, WMI, ADSI, and more.
Forum rules
Do not post any licensing information in this forum.

Any code longer than three lines should be added as code using the 'Select Code' dropdown menu or attached as a file.
This topic is 10 years and 6 months old and has exceeded the time allowed for comments. Please begin a new topic or use the search feature to find a similar but newer topic.
Locked
User avatar
sully213
Posts: 3
Last visit: Tue Jan 18, 2022 6:58 am

InputBox and UBound input validation

Post by sully213 »

I'm putting together a simple default printer selection script and of course I want to validate the user input to make sure their selection falls within the range of the installed printers array. However, I cannot for the life of me see what I'm doing wrong in the upper limit check. When I have that block of code enabled no matter what I enter it's getting flagged as the value is too high. If I comment out the upper level check (lines 8-10 below) then everything else works as expected. What am I missing?

Here is the validation code:
VBScript Code
Double-click the code block to select all.
Do
	strNewDefaultPrinter = InputBox(BuildMenu, "Select a New Default Printer")
	If IsEmpty(strNewDefaultPrinter) <> False Then
		WScript.Echo "You must make a selection."
		strGoodInput = False
	ElseIf IsNumeric(strNewDefaultPrinter) <> True Then
		WScript.Echo strNewDefaultPrinter & " is not a valid number. Try again."
	ElseIf strNewDefaultPrinter > UBound(arrInstalledNewServerPrinters)+1 Then
		WScript.Echo "Your selected value is too high. Try again."
		strGoodInput = False
	ElseIf strNewDefaultPrinter < 1 Then
		WScript.Echo "Your selected value is too low. Try again."
		strGoodInput = False
	Else
		strGoodInput = True
	End If
Loop Until strGoodInput = True
BuildMenu is a Sub I use to build a selection menu of currently installed printers numbered 1 through x, strGoodInput is initialized as True and is set to False if any of the validation checks fail. The user is prompted to enter the number corresponding to the printer listed in the menu.

If you need more of the code let me know, but this snippet should be good enough to get the idea across.
jvierra
Posts: 15439
Last visit: Tue Nov 21, 2023 6:37 pm
Answers: 30
Has voted: 4 times
Been upvoted: 33 times

Re: InputBox and UBound input validation

Post by jvierra »

This works fine for me:
VBScript Code
Double-click the code block to select all.
arrInstalledNewServerPrinters = Array(1,2,3,4,5,6)
Do
    strNewDefaultPrinter = InputBox(BuildMenu, "Select a New Default Printer")
    If IsEmpty(strNewDefaultPrinter) Then
        WScript.Echo "You must make a selection."
    ElseIf Not IsNumeric(strNewDefaultPrinter) Then
        WScript.Echo strNewDefaultPrinter & " is not a valid number. Try again."
    ElseIf (strNewDefaultPrinter - 1) > UBound(arrInstalledNewServerPrinters) Then
        WScript.Echo "Your selected value is too high. Try again."
    ElseIf strNewDefaultPrinter < 1 Then
        WScript.Echo "Your selected value is too low. Try again."
    Else
        bGoodInput= True
    End If
Loop Until bGoodInput
jvierra
Posts: 15439
Last visit: Tue Nov 21, 2023 6:37 pm
Answers: 30
Has voted: 4 times
Been upvoted: 33 times

Re: InputBox and UBound input validation

Post by jvierra »

This may be more obvious:
VBScript Code
Double-click the code block to select all.
arrInstalledNewServerPrinters = Array("one","two","three","four","five","six")
nPrinters = UBound(arrInstalledNewServerPrinters) + 1
On Error Resume Next
Do
    number = Cint(InputBox(BuildMenu, "Select a New Default Printer"))
    If Err.Number = 13 Then
        WScript.Echo "Please enter a valid number. Try again."
    ElseIf number > 0 And number <=  nPrinters THen
        bGoodInput = True
    Else
        WScript.Echo "Valid Range Is 1 To " & UBound(arrInstalledNewServerPrinters) + 1 & " - try again!"
    End If
    
Loop Until bGoodInput
On Error GoTo 0
WScript.Echo "You entered:" & arrInstalledNewServerPrinters(number - 1)
User avatar
sully213
Posts: 3
Last visit: Tue Jan 18, 2022 6:58 am

Re: InputBox and UBound input validation

Post by sully213 »

Thanks, though your code didn't work 100% seeing the CInt ahead of the UBound put me on the right path. I ended up having to use CStr in front of UBound when making the comparison. I was then able to discover that this only reliably tested up to 4-digit numbers (so 9999 would test as too high, but 10000 or above threw an out of range error), so I also added a check to the too high logic for lengths greater than 4.

Here is the fully working code:
VBScript Code
Double-click the code block to select all.
Do
	strNewDefaultPrinter = InputBox(BuildMenu, "Select a New Default Printer")
	If IsEmpty(strNewDefaultPrinter) <> False Then
		WScript.Echo "You must make a selection."
		bGoodInput = False
	ElseIf IsNumeric(strNewDefaultPrinter) <> True Then
		WScript.Echo strNewDefaultPrinter & " is not a valid number. Try again."
		bGoodInput = False
	ElseIf strNewDefaultPrinter > Cstr(UBound(arrInstalledNewServerPrinters) + 1) Or Len(strNewDefaultPrinter) > 4  Then
		WScript.Echo "Your selected value is too high. Try again."
		bGoodInput = False
	ElseIf strNewDefaultPrinter < 1 Then
		WScript.Echo "Your selected value is too low. Try again."
		bGoodInput = False
	Else
		bGoodInput = True
	End If
Loop Until bGoodInput = True
jvierra
Posts: 15439
Last visit: Tue Nov 21, 2023 6:37 pm
Answers: 30
Has voted: 4 times
Been upvoted: 33 times

Re: InputBox and UBound input validation

Post by jvierra »

Why would you care about too high or too low. A number is either good or bad. Size is not important. Are you trying to make the user guess at the printer by randomly entering numbers.

Just display the list and input a number. Check it against the list. It either returns a value or is not a good number.

The fastest way to check an index into an array is to just use it.

Here is another functional approach that uses the system and the program state as well as what we know about the mathematics of the requirement.
VBScript Code
Double-click the code block to select all.
arrInstalledNewServerPrinters = Array("one","two","three","four","five","six")

On Error Resume Next
Do
    input=CInt(InputBox("Menu here", "Select a New Default Printer"))
    If input= 0 Then WScript.Quit ' escape clause
    selection = input - 1
    If selection <= UBound(arrInstalledNewServerPrinters) Then
        result= arrInstalledNewServerPrinters(selection)
        If Err.Number <> 0 Then  ' TOO HIGH
            WScript.Echo "Not a good printer selection"
        Else
            Exit Do
        End If
    End If
Loop While True
WScript.Echo "You entered:" & result
This topic is 10 years and 6 months old and has exceeded the time allowed for comments. Please begin a new topic or use the search feature to find a similar but newer topic.
Locked