DIAdemヘルプ

Method: Refresh for EditBox

  • 更新日2024-09-12
  • 4分で読める

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