0

我有代码将下拉列表中的值附加到文本框。但我不确定为什么这不会在文本框中显示任何类型的文本。

Try
    ' Add the selected text to the end of the text already in txtExpression textbox
    txtExpression.AppendText(cboOpenParen.SelectedText)
Catch ex As Exception

Finally

End Try
4

1 回答 1

0

你不应该使用.SelectedText属性...

使用.Text属性....

代码:

Try
    ' Add the selected text to the end of the text already in txtExpression textbox
    txtExpression.AppendText(cboOpenParen.Text)
Catch ex As Exception

Finally

End Try
于 2012-05-19T04:21:51.300 回答