-1

我无法检查输入是否小于或大于 3 个字符。我应该使用 if 语句还是 while 循环?

以及输入框输入后如何将所有数据存储在列表框中:

For Num = 1 To CInt(nudPassengers.Value)
    Dim userName As String
    if userName < 3 then
    InputBox("Whats your name? " & Num)
    Dim infoForm As New frmBooking
    infoForm.lstItinerary.Items.Add(userName)
    end if
Next
4

1 回答 1

2

少于 3 个字符

 If Username.Length < 3 Then

 End If
于 2012-12-08T22:25:56.167 回答