c# how to refresh input field

50

c# how to refresh input field -

Private Sub Refresh_Textbox_Text(ByVal TextBox As TextBox)
    Dim TempText As String = TextBox.Text
    TextBox.Clear()
    TextBox.Text = TempText
End Sub

Comments

Submit
0 Comments