DIAdem Help

Method: Refresh for EditBox

  • Updated2024-09-12
  • 2 minute(s) read

Method: Refresh for EditBox

Triggers the EventRefresh event in user dialog boxes. The method starts the method RefreshValue. You can use this method to refresh the EditBox control, when another control changes the data of this control.

Object.Refresh
ObjectEditBox
Object with this method

The following example triggers the EventRefresh event for the EditBox1 selection list when ComboBox1 changes:

Sub ComboBox1_EventChange(ByRef This)
  EditBox1.Text = ""
  Call EditBox1.Refresh
End Sub