VisualBasic InputBox Cancel

2019-06-26 02:22发布

Quick question:

I'm using a Microsoft.VisualBasic.Interaction.InputBox in my C# code to allow users to add websites to a list, but I don't want them to enter an empty string so I give an error popup in case that happens. However, the error will also pop up if the user presses "cancel", which I don't want to happen.

Reading the documentation on it says that pressing "cancel" returns an empty string, hence why it fires the error. Is there a way to still define wether the user pressed "okay" with an empty string or "cancel"?

Thanks in advance,

-Peter

2条回答
霸刀☆藐视天下
2楼-- · 2019-06-26 03:00
string a;
            a = Interaction.InputBox("message", "title");
            if (a.Length > 0)
            {
                comboBox2.Items.Add(a);
                // ok
            }
            else
            {
                // cancel
            }
查看更多
别忘想泡老子
3楼-- · 2019-06-26 03:10

You can't do this. From MSDN

If the user clicks Cancel, a zero-length string is returned.

    Dim result As String = Microsoft.VisualBasic.InputBox("Enter some text")
    If result.Length > 0 Then
        Debug.WriteLine("Something entered and OK Clicked")
    Else
        Debug.WriteLine("Cancel Button Clicked OR Blank String Entered and OK Clicked")
    End If

The easiest solution is just to create your own simple input form and test the DialogResult value

查看更多
登录 后发表回答