I have code to append value from dropdownlist to the textbox. But I am not certain why this does not display text of any kind in the textbox.
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
You should not use
.SelectedTextProperty…Use the
.TextProperty….Code: